diff options
author | aap <aap@papnet.eu> | 2020-04-16 10:26:16 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-04-16 10:26:16 +0200 |
commit | 4b602940eb79c637f70a22046d414a0b1358eea8 (patch) | |
tree | 4c8a7e8623be3c639f60d63c25a288c8d732506d /src/core/Game.cpp | |
parent | Merge branch 'master' of github.com:gtamodding/re3 (diff) | |
download | re3-4b602940eb79c637f70a22046d414a0b1358eea8.tar re3-4b602940eb79c637f70a22046d414a0b1358eea8.tar.gz re3-4b602940eb79c637f70a22046d414a0b1358eea8.tar.bz2 re3-4b602940eb79c637f70a22046d414a0b1358eea8.tar.lz re3-4b602940eb79c637f70a22046d414a0b1358eea8.tar.xz re3-4b602940eb79c637f70a22046d414a0b1358eea8.tar.zst re3-4b602940eb79c637f70a22046d414a0b1358eea8.zip |
Diffstat (limited to 'src/core/Game.cpp')
-rw-r--r-- | src/core/Game.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/Game.cpp b/src/core/Game.cpp index fe747ac1..8699ffeb 100644 --- a/src/core/Game.cpp +++ b/src/core/Game.cpp @@ -307,6 +307,7 @@ bool CGame::Initialise(const char* datFile) CDraw::SetFOV(120.0f); CDraw::ms_fLODDistance = 500.0f; LoadingScreen("Loading the Game", "Setup streaming", nil); +#ifdef USE_TXD_CDIMAGE int txdHandle = CFileMgr::OpenFile("MODELS\\TXD.IMG", "r"); if (txdHandle) CFileMgr::CloseFile(txdHandle); @@ -321,6 +322,9 @@ bool CGame::Initialise(const char* datFile) CStreaming::Init(); } } +#else + CStreaming::Init(); +#endif CStreaming::LoadInitialVehicles(); CStreaming::LoadInitialPeds(); CStreaming::RequestBigBuildings(LEVEL_NONE); |