diff options
author | 2023-09-10 01:09:07 -0400 | |
---|---|---|
committer | 2023-09-10 01:09:07 -0400 | |
commit | 34835275649b78c80a8e69b71fb9b990fe654d43 (patch) | |
tree | d90db5e9b3993d740ce27e4efd8eaae2271bb1f9 /mapman/src | |
parent | 3bf49ee7d4458c51bafdb5581c288fbd0f71d532 (diff) | |
download | meteor-trashy-addon-34835275649b78c80a8e69b71fb9b990fe654d43.tar.xz |
Let's actually engage the brain this time.
Diffstat (limited to 'mapman/src')
-rw-r--r-- | mapman/src/mapdump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mapman/src/mapdump.cpp b/mapman/src/mapdump.cpp index af32a0f..b5db3b4 100644 --- a/mapman/src/mapdump.cpp +++ b/mapman/src/mapdump.cpp @@ -9,7 +9,7 @@ bool load_dump(gzFile f, map_t &d) if (gzread(f, &d.id, 4) < 4) return false; int name_len; if (gzread(f, &name_len, 4) < 4) return false; - d.locked = ((name_len & 0xf0000000) != 0); + d.locked = ((name_len & 0x80000000) != 0); name_len &= 0x7fffffff; if (name_len) { |