mirror of https://github.com/AxioDL/metaforce.git
Fix Retro's rounding fail
This commit is contained in:
parent
356788fb9e
commit
e962ae271b
|
@ -128,7 +128,8 @@ CGameState::GameFileStateInfo CGameState::LoadGameFileState(const u8* data)
|
|||
if (origMLVL == 0x158EFE17)
|
||||
itemPercent = 0;
|
||||
else
|
||||
itemPercent = playerState.CalculateItemCollectionRate() * 100 / playerState.GetPickupTotal();
|
||||
itemPercent = std::ceil(playerState.CalculateItemCollectionRate() * 100.f / playerState.GetPickupTotal());
|
||||
|
||||
ret.x18_itemPercent = itemPercent;
|
||||
|
||||
float somePercent;
|
||||
|
|
Loading…
Reference in New Issue