diff options
author | aap <aap@papnet.eu> | 2019-06-13 01:12:37 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-13 01:12:37 +0200 |
commit | 3472a614ae3b4ecf7f49516a97d387761f0f5820 (patch) | |
tree | 27f6bd454211d0ea8c88b34915ee22ef7e9c05a0 /src/FileMgr.cpp | |
parent | implemented CutsceneObject; little fixes (diff) | |
download | re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar.gz re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar.bz2 re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar.lz re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar.xz re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar.zst re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.zip |
Diffstat (limited to 'src/FileMgr.cpp')
-rw-r--r-- | src/FileMgr.cpp | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/FileMgr.cpp b/src/FileMgr.cpp index 3aad9794..02c797ba 100644 --- a/src/FileMgr.cpp +++ b/src/FileMgr.cpp @@ -5,6 +5,8 @@ #include "patcher.h" #include "FileMgr.h" +const char *_psGetUserFilesFolder(); + /* * Windows FILE is BROKEN for GTA. * @@ -49,14 +51,17 @@ found: return fd; } -static void +static int myfclose(int fd) { + int ret; assert(fd < NUMFILES); if(myfiles[fd].file){ - fclose(myfiles[fd].file); + ret = fclose(myfiles[fd].file); myfiles[fd].file = nil; + return ret; } + return EOF; } static int @@ -158,7 +163,8 @@ myfseek(int fd, long offset, int whence) static int myfeof(int fd) { - return feof(myfiles[fd].file); +// return feof(myfiles[fd].file); + return ferror(myfiles[fd].file); } @@ -205,7 +211,7 @@ void CFileMgr::SetDirMyDocuments(void) { SetDir(""); // better start at the root if user directory is relative - chdir(GetUserDirectory()); + chdir(_psGetUserFilesFolder()); } int @@ -265,10 +271,10 @@ CFileMgr::ReadLine(int fd, char *buf, int len) return myfgets(buf, len, fd); } -void +int CFileMgr::CloseFile(int fd) { - myfclose(fd); + return myfclose(fd); } int |