mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-05 05:13:27 +00:00
Revert std::ceil on completion rate calculation
This commit is contained in:
parent
898114d803
commit
531b34b62d
@ -129,7 +129,7 @@ CGameState::GameFileStateInfo CGameState::LoadGameFileState(const u8* data)
|
||||
if (origMLVL == 0x158EFE17)
|
||||
itemPercent = 0;
|
||||
else
|
||||
itemPercent = u32(std::ceil(playerState.CalculateItemCollectionRate() * 100.f / playerState.GetPickupTotal()));
|
||||
itemPercent = playerState.CalculateItemCollectionRate() * 100 / playerState.GetPickupTotal();
|
||||
|
||||
ret.x18_itemPercent = itemPercent;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user