diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-09-14 02:36:03 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-09-14 02:36:03 +0200 |
commit | dd8eacee1b28ca40f8dc770587d111656d92d5fb (patch) | |
tree | 152e671cbb9ad23ce8966a23e752423ace7d8b82 /logic/minecraft/World.cpp | |
parent | e38cc1d480fdcf3ad08829688fe1a61961612e36 (diff) | |
download | MultiMC-dd8eacee1b28ca40f8dc770587d111656d92d5fb.tar MultiMC-dd8eacee1b28ca40f8dc770587d111656d92d5fb.tar.gz MultiMC-dd8eacee1b28ca40f8dc770587d111656d92d5fb.tar.lz MultiMC-dd8eacee1b28ca40f8dc770587d111656d92d5fb.tar.xz MultiMC-dd8eacee1b28ca40f8dc770587d111656d92d5fb.zip |
GH-1227 renam GZip functions to not collide with zlib macros
Diffstat (limited to 'logic/minecraft/World.cpp')
-rw-r--r-- | logic/minecraft/World.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/minecraft/World.cpp b/logic/minecraft/World.cpp index bb99aa96..cda81309 100644 --- a/logic/minecraft/World.cpp +++ b/logic/minecraft/World.cpp @@ -187,7 +187,7 @@ static int64_t read_long (nbt::value& parent, const char * name, const int64_t & void World::parseLevelDat(QByteArray data) { QByteArray output; - is_valid = GZip::decompress(data, output); + is_valid = GZip::unzip(data, output); if(!is_valid) { return; |