Fix CPlayerState constructor

Former-commit-id: 10b6be7e29
This commit is contained in:
Henrique Gemignani Passos Lima 2023-01-14 23:39:09 +02:00
parent 1fdbb73942
commit 54082f92f8
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ CPlayerState::CPlayerState(CInputStream& stream)
x8_currentBeam = EBeamId(stream.ReadBits(GetBitCount(5)));
x20_currentSuit = EPlayerSuit(stream.ReadBits(GetBitCount(4)));
for (size_t i = 0; i < x24_powerups.capacity(); ++i) {
for (int i = 0; i < x24_powerups.capacity(); ++i) {
int amount = 0;
int capacity = 0;