diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/createmap.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/createmap.py b/tools/createmap.py index 36f6ca9..6deb0aa 100755 --- a/tools/createmap.py +++ b/tools/createmap.py @@ -8,8 +8,8 @@ outfile = "map.tiles" ATLASFILE = "atlas.png" TILESIZE = 16 -WIDTH = 1024 -HEIGHT = 1024 +WIDTH = 2**10 +HEIGHT = 2**11 # create atlas bytes image = Image.open(ATLASFILE).convert("RGBA") |