CMoneyMessages::RegisterOne v2

This commit is contained in:
Filip Gawin 2020-12-31 22:09:25 +01:00
parent 31000fb4f0
commit e9288dd005
1 changed files with 16 additions and 12 deletions

View File

@ -1092,10 +1092,13 @@ void
CMoneyMessages::RegisterOne(CVector vecPos, const char *pText, uint8 bRed, uint8 bGreen, uint8 bBlue, float fSize, float fOpacity)
{
uint32 i;
for(i = 0; i < NUMMONEYMESSAGES; i++)
if(aMoneyMessages[i].m_nTimeRegistered != 0) break;
if(i == NUMMONEYMESSAGES) return;
#ifdef FIX_BUGS
for(i = 0; i < NUMMONEYMESSAGES && aMoneyMessages[i].m_nTimeRegistered != 0; i++);
#else
for(i = 0; aMoneyMessages[i].m_nTimeRegistered != 0 && i < NUMMONEYMESSAGES; i++);
#endif
if(i < NUMMONEYMESSAGES) {
// Add data of this money message to the array
AsciiToUnicode(pText, aMoneyMessages[i].m_aText);
@ -1107,6 +1110,7 @@ CMoneyMessages::RegisterOne(CVector vecPos, const char *pText, uint8 bRed, uint8
aMoneyMessages[i].m_fSize = fSize;
aMoneyMessages[i].m_fOpacity = fOpacity;
}
}
CRGBA FoamColour(255, 255, 255, 255);
unsigned int CSpecialParticleStuff::BoatFromStart;