mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 19:38:59 +00:00
zero check
This commit is contained in:
parent
5854016ec5
commit
90f085c1ca
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ LoadPlayerDff(void)
|
||||||
uint8 *buffer;
|
uint8 *buffer;
|
||||||
bool streamWasAdded = false;
|
bool streamWasAdded = false;
|
||||||
|
|
||||||
if (!CdStreamGetNumImages()) {
|
if (CdStreamGetNumImages() == 0) {
|
||||||
CdStreamAddImage("models\\gta3.img");
|
CdStreamAddImage("models\\gta3.img");
|
||||||
streamWasAdded = true;
|
streamWasAdded = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue