Merge pull request #872 from withmorten/sized-enums-miami

Get rid of sized enums 2: Electric Boogaloo
This commit is contained in:
erorcun
2020-12-09 03:31:03 +03:00
committed by GitHub
28 changed files with 74 additions and 75 deletions

View File

@ -852,7 +852,7 @@ CPickups::GenerateNewOne(CVector pos, uint32 modelIndex, uint8 type, uint32 quan
if (slot >= NUMPICKUPS) return -1;
aPickUps[slot].m_eType = (ePickupType)type;
aPickUps[slot].m_eType = type;
aPickUps[slot].m_bRemoved = false;
aPickUps[slot].m_nQuantity = quantity;
aPickUps[slot].m_nMoneySpeed = rate;