diff options
author | Mat <mail@mathias.is> | 2020-05-07 21:14:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-07 21:14:00 +0200 |
commit | c710f6a4ea2231051a9e6406128d6e06af86e58e (patch) | |
tree | d86451d18434a1e02d8753ee2486d11068f69494 /src/WorldStorage/MapSerializer.cpp | |
parent | Remove coverity_scan branch reference (diff) | |
download | cuberite-c710f6a4ea2231051a9e6406128d6e06af86e58e.tar cuberite-c710f6a4ea2231051a9e6406128d6e06af86e58e.tar.gz cuberite-c710f6a4ea2231051a9e6406128d6e06af86e58e.tar.bz2 cuberite-c710f6a4ea2231051a9e6406128d6e06af86e58e.tar.lz cuberite-c710f6a4ea2231051a9e6406128d6e06af86e58e.tar.xz cuberite-c710f6a4ea2231051a9e6406128d6e06af86e58e.tar.zst cuberite-c710f6a4ea2231051a9e6406128d6e06af86e58e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/WorldStorage/MapSerializer.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/WorldStorage/MapSerializer.cpp b/src/WorldStorage/MapSerializer.cpp index 381ef19fa..d030b5a32 100644 --- a/src/WorldStorage/MapSerializer.cpp +++ b/src/WorldStorage/MapSerializer.cpp @@ -23,7 +23,7 @@ cMapSerializer::cMapSerializer(const AString & a_WorldName, cMap * a_Map): Printf(m_Path, "%s%cmap_%i.dat", DataPath.c_str(), cFile::PathSeparator(), a_Map->GetID()); - cFile::CreateFolder(FILE_IO_PREFIX + DataPath); + cFile::CreateFolder(DataPath); } @@ -32,7 +32,7 @@ cMapSerializer::cMapSerializer(const AString & a_WorldName, cMap * a_Map): bool cMapSerializer::Load(void) { - AString Data = cFile::ReadWholeFile(FILE_IO_PREFIX + m_Path); + AString Data = cFile::ReadWholeFile(m_Path); if (Data.empty()) { return false; @@ -75,7 +75,7 @@ bool cMapSerializer::Save(void) #endif // _DEBUG cFile File; - if (!File.Open(FILE_IO_PREFIX + m_Path, cFile::fmWrite)) + if (!File.Open(m_Path, cFile::fmWrite)) { return false; } @@ -207,7 +207,7 @@ cIDCountSerializer::cIDCountSerializer(const AString & a_WorldName) : m_MapCount Printf(m_Path, "%s%cidcounts.dat", DataPath.c_str(), cFile::PathSeparator()); - cFile::CreateFolder(FILE_IO_PREFIX + DataPath); + cFile::CreateFolder(DataPath); } @@ -216,7 +216,7 @@ cIDCountSerializer::cIDCountSerializer(const AString & a_WorldName) : m_MapCount bool cIDCountSerializer::Load(void) { - AString Data = cFile::ReadWholeFile(FILE_IO_PREFIX + m_Path); + AString Data = cFile::ReadWholeFile(m_Path); if (Data.empty()) { return false; @@ -266,7 +266,7 @@ bool cIDCountSerializer::Save(void) #endif // _DEBUG cFile File; - if (!File.Open(FILE_IO_PREFIX + m_Path, cFile::fmWrite)) + if (!File.Open(m_Path, cFile::fmWrite)) { return false; } |