diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-20 01:31:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-20 01:31:00 +0300 |
commit | 81f90959fe5bceb743ec243b8f7243b50e933e05 (patch) | |
tree | 31e9d9f6fa57e13ca0dbc2d2452205a6bf49f296 /src/utils/physfstools.cpp | |
parent | 444cb0a5459f8ea0d5cebb9216cfba85a9e9495c (diff) | |
download | plus-81f90959fe5bceb743ec243b8f7243b50e933e05.tar.gz plus-81f90959fe5bceb743ec243b8f7243b50e933e05.tar.bz2 plus-81f90959fe5bceb743ec243b8f7243b50e933e05.tar.xz plus-81f90959fe5bceb743ec243b8f7243b50e933e05.zip |
Fix compilation with old physfs.
Diffstat (limited to 'src/utils/physfstools.cpp')
-rw-r--r-- | src/utils/physfstools.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/physfstools.cpp b/src/utils/physfstools.cpp index bf0dfead3..06df8fccf 100644 --- a/src/utils/physfstools.cpp +++ b/src/utils/physfstools.cpp @@ -57,17 +57,17 @@ namespace PhysFs PHYSFS_freeList(listVar); } - PHYSFS_File *openRead(const char *filename) + PHYSFS_file *openRead(const char *filename) { return PHYSFS_openRead(filename); } - PHYSFS_File *openWrite(const char *filename) + PHYSFS_file *openWrite(const char *filename) { return PHYSFS_openWrite(filename); } - PHYSFS_File *openAppend(const char *filename) + PHYSFS_file *openAppend(const char *filename) { return PHYSFS_openAppend(filename); } |