mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-04 14:24:11 +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…
Add table
Add a link
Reference in a new issue