diff options
author | aaaaaa123456789 <aaaaaa123456789@acidch.at> | 2020-06-28 06:55:20 -0300 |
---|---|---|
committer | aaaaaa123456789 <aaaaaa123456789@acidch.at> | 2020-06-28 06:55:20 -0300 |
commit | c1fc2368c605e7db7d23de43e74d6e8040f94dd7 (patch) | |
tree | a2232768b9904536bf05c0c436c6e20e61ff5989 | |
parent | ce8d8840f1d8ee301380f7a81a4d78c0485df901 (diff) |
Fix lzcomp flags after fixing uninitialized read bug
-rw-r--r-- | gfx/lz.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -44,8 +44,9 @@ gfx/tilesets/johto_modern.2bpp.lz: LZFLAGS = --compressor null --method 1 --alig gfx/tilesets/kanto.2bpp.lz: LZFLAGS = --compressor null --method 1 --align 1 gfx/tilesets/mansion.2bpp.lz: LZFLAGS += --method 2 --align 4 gfx/tilesets/mart.2bpp.lz: LZFLAGS += --method 2 --align 4 +gfx/tilesets/players_room.2bpp.lz: LZFLAGS += --method 4 --align 4 gfx/tilesets/radio_tower.2bpp.lz: LZFLAGS += --method 2 --align 4 -gfx/tilesets/ruins_of_alph.2bpp.lz: LZFLAGS += --method 2 --align 4 +gfx/tilesets/ruins_of_alph.2bpp.lz: LZFLAGS += --method 6 --align 4 gfx/tilesets/tower.2bpp.lz: LZFLAGS += --method 2 --align 4 gfx/title/hooh_gold.2bpp.lz: LZFLAGS += --align 3 |