Missed some changes for the color/b&w logic changes

This commit is contained in:
Godzil
2021-04-05 13:36:02 +01:00
parent d45d838378
commit 94dc2fc463

View File

@@ -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();