Actually use the same strings everywhere lol

This commit is contained in:
Josh Bodner 2022-07-20 21:50:55 -07:00
parent 795ee54f2b
commit 75a4d2cf99
1 changed files with 2 additions and 2 deletions

View File

@ -1678,9 +1678,9 @@ void Randomizer::ParseRandomizerSettingsFile(const char* spoilerFileName) {
}
break;
case RSK_SKIP_CHILD_ZELDA:
if (it.value() == "No") {
if (it.value() == "Off") {
gSaveContext.randoSettings[index].value = 0;
} else if (it.value() == "Yes") {
} else if (it.value() == "On") {
gSaveContext.randoSettings[index].value = 1;
}
break;