mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 15:18:59 +00:00
tidy water sync
This commit is contained in:
parent
23b5e664dc
commit
c4c92c357f
1 changed files with 5 additions and 1 deletions
|
@ -62,7 +62,11 @@ CWaterLevel::Initialise(Const char *pWaterDat)
|
||||||
#ifdef MASTER
|
#ifdef MASTER
|
||||||
int32 hFile = -1;
|
int32 hFile = -1;
|
||||||
|
|
||||||
while ((hFile = CFileMgr::OpenFile("DATA\\waterpro.dat", "rb")) < 0);
|
do
|
||||||
|
{
|
||||||
|
hFile = CFileMgr::OpenFile("DATA\\waterpro.dat", "rb");
|
||||||
|
}
|
||||||
|
while ( hFile < 0 );
|
||||||
#else
|
#else
|
||||||
int32 hFile = CFileMgr::OpenFile("DATA\\waterpro.dat", "rb");
|
int32 hFile = CFileMgr::OpenFile("DATA\\waterpro.dat", "rb");
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue