SaveState: Add a setting to ignore warnings.

In case you like to collect old and obscure bugs - everyone's got a hobby.
This commit is contained in:
Unknown W. Brackets 2018-06-14 17:54:13 -07:00
parent a5efb85ab7
commit 006ef96b19
3 changed files with 4 additions and 2 deletions

View file

@ -416,6 +416,7 @@ static ConfigSetting cpuSettings[] = {
ConfigSetting("FastMemoryAccess", &g_Config.bFastMemory, true, true, true),
ReportedConfigSetting("FuncReplacements", &g_Config.bFuncReplacements, true, true, true),
ConfigSetting("HideSlowWarnings", &g_Config.bHideSlowWarnings, false, true, false),
ConfigSetting("HideStateWarnings", &g_Config.bHideStateWarnings, false, true, true),
ConfigSetting("PreloadFunctions", &g_Config.bPreloadFunctions, false, true, true),
ReportedConfigSetting("CPUSpeed", &g_Config.iLockedCPUSpeed, 0, true, true),