Bit of cleanup

This commit is contained in:
Christopher Leggett 2022-08-29 00:11:10 -04:00
parent 0a27714b8e
commit a84262dbf7
No known key found for this signature in database
GPG Key ID: 7093AE5FF7037D79

View File

@ -878,14 +878,11 @@ void Randomizer::ParseRandomizerSettingsFile(const char* spoilerFileName) {
case RSK_GERUDO_KEYS:
if (it.value() == "Vanilla") {
gSaveContext.randoSettings[index].value = 0;
}
if (it.value() == "Any Dungeon") {
} else if (it.value() == "Any Dungeon") {
gSaveContext.randoSettings[index].value = 1;
}
if (it.value() == "Overworld") {
} else if (it.value() == "Overworld") {
gSaveContext.randoSettings[index].value = 2;
}
if (it.value() == "Anywhere") {
} else if (it.value() == "Anywhere") {
gSaveContext.randoSettings[index].value = 3;
}
case RSK_KEYSANITY: