mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-06-20 16:21:55 -04:00
fix windows warning (#6781)
This commit is contained in:
@@ -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<s8>(gSaveContext.magicCapacity);
|
||||
}
|
||||
|
||||
uint8_t startBombchu = Randomizer_GetSettingValue(RSK_STARTING_BOMBCHU_BAG);
|
||||
|
||||
Reference in New Issue
Block a user