summaryrefslogtreecommitdiff
path: root/src/utils/physfstools.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/physfstools.cpp')
-rw-r--r--src/utils/physfstools.cpp6
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);
}