2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 21:47:42 +00:00

Fix typo in CPlayerState::ReInitializePowerUp

This commit is contained in:
Henrique Gemignani Passos Lima
2021-03-16 00:43:28 +02:00
parent 268e7d143f
commit bad8b35ae6
4 changed files with 7 additions and 7 deletions

View File

@@ -371,7 +371,7 @@ void CPlayerState::AddPowerUp(CPlayerState::EItemType type, u32 capacity) {
}
}
void CPlayerState::ReInitalizePowerUp(CPlayerState::EItemType type, u32 capacity) {
void CPlayerState::ReInitializePowerUp(CPlayerState::EItemType type, u32 capacity) {
x24_powerups[u32(type)].x4_capacity = 0;
AddPowerUp(type, capacity);
}