mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-01-30 23:10:14 -05:00
fix: disable randomizer cvar when in master quest
This commit is contained in:
parent
97211093f3
commit
af13595aae
@ -27,6 +27,11 @@ void BootCommands_Init()
|
|||||||
CVar_RegisterS32("gHudColors", 1); //0 = N64 / 1 = NGC / 2 = Custom
|
CVar_RegisterS32("gHudColors", 1); //0 = N64 / 1 = NGC / 2 = Custom
|
||||||
CVar_RegisterS32("gInvertYAxis", 1);
|
CVar_RegisterS32("gInvertYAxis", 1);
|
||||||
CVar_RegisterS32("gTrailDuration", 4); // 4 = Default trail duration
|
CVar_RegisterS32("gTrailDuration", 4); // 4 = Default trail duration
|
||||||
|
if (ResourceMgr_IsGameMasterQuest()) {
|
||||||
|
CVar_SetS32("gRandomizer", 0);
|
||||||
|
} else {
|
||||||
|
CVar_RegisterS32("gRandomizer", 0);
|
||||||
|
}
|
||||||
#if defined(__SWITCH__) || defined(__WIIU__)
|
#if defined(__SWITCH__) || defined(__WIIU__)
|
||||||
CVar_RegisterS32("gControlNav", 1); // always enable controller nav on switch/wii u
|
CVar_RegisterS32("gControlNav", 1); // always enable controller nav on switch/wii u
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user