From 8f087b975ca8757bb7bd3b93eb49fdb0ab8973e8 Mon Sep 17 00:00:00 2001 From: "notzed@gmail.com" Date: Tue, 5 Mar 2013 10:30:24 +0000 Subject: [PATCH] Got the map magic endianess backwards git-svn-id: file:///home/notzed/svn/duskz/trunk@11 b8b59bfb-1aa4-4687-8f88-a62eeb14c21e --- DuskServer/src/duskz/server/entity/TileMap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DuskServer/src/duskz/server/entity/TileMap.java b/DuskServer/src/duskz/server/entity/TileMap.java index 7b88d3f..d53db82 100644 --- a/DuskServer/src/duskz/server/entity/TileMap.java +++ b/DuskServer/src/duskz/server/entity/TileMap.java @@ -157,7 +157,7 @@ public class TileMap implements Iterable { public static final int FORMAT_SHORT = 1; // 'mapz' // TODO: gzip? - public static final int MAGIC_LAYERED = 0x7a70616d; + public static final int MAGIC_LAYERED = 0x6d61707a; /** * Load a layered map. Format is: -- 2.39.2