summaryrefslogtreecommitdiffstats
path: root/source/OSSupport/File.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-02-07 10:15:55 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-02-07 10:15:55 +0100
commite0535ca6dfee3e5680d591e5764529596d4d412d (patch)
tree1cbbc76193f67b9f78c52149afeddaccaf791256 /source/OSSupport/File.cpp
parentcBlockArea can now be loaded from a .schematic file. (diff)
downloadcuberite-e0535ca6dfee3e5680d591e5764529596d4d412d.tar
cuberite-e0535ca6dfee3e5680d591e5764529596d4d412d.tar.gz
cuberite-e0535ca6dfee3e5680d591e5764529596d4d412d.tar.bz2
cuberite-e0535ca6dfee3e5680d591e5764529596d4d412d.tar.lz
cuberite-e0535ca6dfee3e5680d591e5764529596d4d412d.tar.xz
cuberite-e0535ca6dfee3e5680d591e5764529596d4d412d.tar.zst
cuberite-e0535ca6dfee3e5680d591e5764529596d4d412d.zip
Diffstat (limited to 'source/OSSupport/File.cpp')
-rw-r--r--source/OSSupport/File.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/OSSupport/File.cpp b/source/OSSupport/File.cpp
index 7fbaf218f..15a37a36f 100644
--- a/source/OSSupport/File.cpp
+++ b/source/OSSupport/File.cpp
@@ -28,7 +28,7 @@ cFile::cFile(void) :
/// Constructs and opens / creates the file specified, use IsOpen() to check for success
-cFile::cFile(const AString & iFileName, EMode iMode) :
+cFile::cFile(const AString & iFileName, eMode iMode) :
#ifdef USE_STDIO_FILE
m_File(NULL)
#else
@@ -55,7 +55,7 @@ cFile::~cFile()
-bool cFile::Open(const AString & iFileName, EMode iMode)
+bool cFile::Open(const AString & iFileName, eMode iMode)
{
ASSERT(!IsOpen()); // You should close the file before opening another one