diff --git a/soh/soh/Enhancements/randomizer/savefile.cpp b/soh/soh/Enhancements/randomizer/savefile.cpp index 15d644c902..a1103a47f4 100644 --- a/soh/soh/Enhancements/randomizer/savefile.cpp +++ b/soh/soh/Enhancements/randomizer/savefile.cpp @@ -285,7 +285,7 @@ void SetStartingItems() { gSaveContext.isDoubleMagicAcquired = startMagic >= 2; gSaveContext.magicLevel = startMagic; gSaveContext.magicCapacity = startMagic * MAGIC_NORMAL_METER; - gSaveContext.magic = gSaveContext.magicCapacity; + gSaveContext.magic = static_cast(gSaveContext.magicCapacity); } uint8_t startBombchu = Randomizer_GetSettingValue(RSK_STARTING_BOMBCHU_BAG);