diff options
author | aaaaaa123456789 <aaaaaa123456789@acidch.at> | 2020-06-28 05:23:09 -0300 |
---|---|---|
committer | aaaaaa123456789 <aaaaaa123456789@acidch.at> | 2020-06-28 05:23:09 -0300 |
commit | 5e99f9390a304cab6a69fdb92467645e5be1a985 (patch) | |
tree | 710ead352c491bc5125e97f1bb3f06eb6ee650c3 | |
parent | 267352c4d8d4d390fc41e9db7e35f501d059eed3 (diff) |
Fix lzcomp flags after fixing uninitialized read bug
-rw-r--r-- | gfx/lz.mk | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -34,7 +34,12 @@ gfx/pokegear/pokegear.2bpp.lz: LZFLAGS = --compressor null --method 1 --align 1 gfx/pokegear/pokegear_sprites.2bpp.lz: LZFLAGS += --align 4 gfx/pokegear/town_map.2bpp.lz: LZFLAGS = --compressor null --method 1 --align 1 +gfx/pokemon/corsola/front.animated.2bpp.lz: LZFLAGS += --method 4 gfx/pokemon/hitmontop/back.2bpp.lz: LZFLAGS += --method 4 +gfx/pokemon/nidoran_f/front.animated.2bpp.lz: LZFLAGS += --method 4 +gfx/pokemon/primeape/front.animated.2bpp.lz: LZFLAGS += --method 4 +gfx/pokemon/scyther/front.animated.2bpp.lz: LZFLAGS += --method 4 +gfx/pokemon/unown_g/front.animated.2bpp.lz: LZFLAGS += --method 4 gfx/pokemon/voltorb/front.animated.2bpp.lz: LZFLAGS += --method 4 gfx/sgb/gbc_only.2bpp.lz: LZFLAGS = --compressor null --method 1 --align 1 @@ -56,6 +61,7 @@ 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/omanyte_word_room.2bpp.lz: LZFLAGS = --compressor null --method 1 --align 1 +gfx/tilesets/players_room.2bpp.lz: LZFLAGS += --method 4 --align 4 gfx/tilesets/ruins_of_alph.2bpp.lz: LZFLAGS = --compressor null --method 1 --align 1 gfx/tilesets/tower.2bpp.lz: LZFLAGS += --method 2 --align 4 |