From 94dc2fc463db98d8c9e23a414e3d9073d7d832a9 Mon Sep 17 00:00:00 2001 From: Godzil Date: Mon, 5 Apr 2021 13:36:02 +0100 Subject: [PATCH] Missed some changes for the color/b&w logic changes --- source/ws.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/source/ws.c b/source/ws.c index 7b01e7f..dadeb9f 100644 --- a/source/ws.c +++ b/source/ws.c @@ -51,6 +51,7 @@ uint32_t vblank_count=0; char *ws_sram_path = NULL; char *ws_ieep_path = NULL; char *ws_rom_path = NULL; +wssystem_t systemType; //////////////////////////////////////////////////////////////////////////////// // @@ -99,18 +100,6 @@ int ws_init(char *rompath) return(0); } - if ((ws_gpu_forceColorSystemBool == 0) && (ws_gpu_forceMonoSystemBool == 0)) - { - /* Nothing forced try to "auto detect" */ - if (rompath[strlen(rompath)-1]=='c') - { - ws_gpu_operatingInColor=1; - } - else - { - ws_gpu_operatingInColor=0; - } - } ws_memory_init(rom, romSize); ws_patchRom();