mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 08:38:59 +00:00
crash fix
This commit is contained in:
parent
02741dc64f
commit
d4ae40ae99
1 changed files with 3 additions and 0 deletions
|
@ -840,6 +840,7 @@ CPickups::RenderPickUpText()
|
||||||
if (aMessages[i].m_weaponType == WEAPONTYPE_TOTALWEAPONS) { // unreachable code?
|
if (aMessages[i].m_weaponType == WEAPONTYPE_TOTALWEAPONS) { // unreachable code?
|
||||||
// what is this??
|
// what is this??
|
||||||
sprintf(gString, "%d/%d", CWorld::Players[CWorld::PlayerInFocus].m_nCollectedPackages, 2903);
|
sprintf(gString, "%d/%d", CWorld::Players[CWorld::PlayerInFocus].m_nCollectedPackages, 2903);
|
||||||
|
strToPrint = nil;
|
||||||
} else {
|
} else {
|
||||||
if (aMessages[i].m_bOutOfStock)
|
if (aMessages[i].m_bOutOfStock)
|
||||||
strToPrint = TheText.Get("STOCK");
|
strToPrint = TheText.Get("STOCK");
|
||||||
|
@ -971,6 +972,8 @@ CPickups::RenderPickUpText()
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (strToPrint == nil)
|
||||||
|
continue;
|
||||||
CFont::SetPropOn();
|
CFont::SetPropOn();
|
||||||
CFont::SetBackgroundOff();
|
CFont::SetBackgroundOff();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue