mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-19 13:00:11 -07:00
clear cvars that lock up randomizer menu on boot (#2405)
This commit is contained in:
parent
279553e6b3
commit
1e2b60c6e0
1 changed files with 2 additions and 0 deletions
|
@ -24,7 +24,9 @@ void BootCommands_Init()
|
||||||
CVarRegisterInteger("gLanguages", LANGUAGE_ENG);
|
CVarRegisterInteger("gLanguages", LANGUAGE_ENG);
|
||||||
CVarRegisterInteger("gDebugWarpScreenTranslation", 1);
|
CVarRegisterInteger("gDebugWarpScreenTranslation", 1);
|
||||||
CVarRegisterInteger("gInvertYAxis", 1);
|
CVarRegisterInteger("gInvertYAxis", 1);
|
||||||
|
// Clears vars to prevent randomizer menu from being disabled
|
||||||
CVarSetInteger("gRandoGenerating", 0); // Clear when a crash happened during rando seed generation
|
CVarSetInteger("gRandoGenerating", 0); // Clear when a crash happened during rando seed generation
|
||||||
|
CVarSetInteger("gOnFileSelectNameEntry", 0); // Clear when soh is killed on the file name entry page
|
||||||
#if defined(__SWITCH__) || defined(__WIIU__)
|
#if defined(__SWITCH__) || defined(__WIIU__)
|
||||||
CVarRegisterInteger("gControlNav", 1); // always enable controller nav on switch/wii u
|
CVarRegisterInteger("gControlNav", 1); // always enable controller nav on switch/wii u
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue