diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-07 10:15:55 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-07 10:15:55 +0100 |
commit | e0535ca6dfee3e5680d591e5764529596d4d412d (patch) | |
tree | 1cbbc76193f67b9f78c52149afeddaccaf791256 /source/OSSupport/File.cpp | |
parent | cBlockArea can now be loaded from a .schematic file. (diff) | |
download | cuberite-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 '')
-rw-r--r-- | source/OSSupport/File.cpp | 4 |
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 |