spu_config.iUseThread = 0;
}
+#if 0 // currently disabled, see USE_READ_THREAD in libpcsxcore/cdriso.c
if (P_HAVE_PTHREAD) {
var.value = NULL;
var.key = "pcsx_rearmed_async_cd";
}
}
}
+#endif
var.value = NULL;
var.key = "pcsx_rearmed_noxadecoding";
mouse_sensitivity = atof(var.value);
}
+ if (found_bios)
+ {
+ var.value = NULL;
+ var.key = "pcsx_rearmed_show_bios_bootlogo";
+ if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
+ {
+ Config.SlowBoot = 0;
+ if (strcmp(var.value, "enabled") == 0)
+ Config.SlowBoot = 1;
+ }
+ }
+
if (in_flight)
{
// inform core things about possible config changes
/* dfinput_activate(); */
}
- else
- {
- //not yet running
-
- //bootlogo display hack
- if (found_bios)
- {
- var.value = NULL;
- var.key = "pcsx_rearmed_show_bios_bootlogo";
- if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
- {
- Config.SlowBoot = 0;
- rebootemu = 0;
- if (strcmp(var.value, "enabled") == 0)
- {
- Config.SlowBoot = 1;
- rebootemu = 1;
- }
- }
- }
- }
update_option_visibility();
}
},
"disabled",
},
+#endif /* !DRC_DISABLE && !LIGHTREC */
{
"pcsx_rearmed_nostalls",
- "(Speed Hack) Disable CPU/GTE Stalls",
"Disable CPU/GTE Stalls",
- "Will cause some games to run too quickly.",
NULL,
- "speed_hack",
+ "Will cause some games to run too quickly."
+#if defined(LIGHTREC)
+ " Interpreter only."
+#endif
+ ,
+ NULL,
+ "compat_hack",
{
{ "disabled", NULL },
{ "enabled", NULL },
},
"disabled",
},
-#endif /* !DRC_DISABLE && !LIGHTREC */
{ NULL, NULL, NULL, NULL, NULL, NULL, {{0}}, NULL },
};