didn't mean to check that in

This commit is contained in:
briaguya 2022-05-30 21:37:12 -04:00
commit de67b0b13c

View file

@ -1164,11 +1164,7 @@ void Randomizer::ParseItemLocations(const char* spoilerFileName) {
int index = 0; int index = 0;
for (auto it = hashJson.begin(); it != hashJson.end(); ++it) { for (auto it = hashJson.begin(); it != hashJson.end(); ++it) {
std::string blarg = it.value(); gSaveContext.seedIcons[index] = gSeedTextures[it.value()];
Sprite seedSprite = gSeedTextures[blarg];
int indexBlarg = index;
blarg = indexBlarg;
gSaveContext.seedIcons[indexBlarg] = seedSprite;
index++; index++;
} }