File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ RGBASMFLAGS_JUDGE = $(RGBASMFLAGS) -I inc -I art/judge \
1818 -D _NOSE=$(T_NOSE ) \
1919 -D _MOUTH=$(T_MOUTH ) \
2020
21- T_SOUL = 00
21+ T_SOUL = 01
2222T_FEATHER = 1C
2323T_CHAIN = 20
2424T_EYE = 28
@@ -104,7 +104,7 @@ art/judge/judge_scales.1bpp: art/judge/judge_scales.png
104104 $(RGBGFX ) -um -d1 $< -o $@
105105
106106art/judge/judge_soul.1bpp art/judge/judge_soul.tilemap : art/judge/judge_soul.png art/judge/blank.1bpp
107- $(RGBGFX ) -u -d1 -T -b 0x $( T_SOUL ) $< -o $@ -i art/judge/blank.1bpp
107+ $(RGBGFX ) -u -d1 -T $< -o $@ -i art/judge/blank.1bpp
108108
109109art/judge/judge_feather.1bpp art/judge/judge_feather.tilemap : art/judge/judge_feather.png
110110 $(RGBGFX ) -u -d1 -T -b 0x$(T_FEATHER ) $< -o $@
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ Judge::
4747 ld de , Y_SOUL_0 << 8 | X_SOUL
4848 call SetObject
4949 call SetNextObject
50+ inc b
5051 ld de , (Y_SOUL_0 + TILE_HEIGHT) << 8 | X_SOUL
5152 call SetObject
5253 call SetNextObject
@@ -55,6 +56,7 @@ Judge::
5556 ld b , T_FEATHER
5657 ld de , Y_FEATHER_0 << 8 | X_FEATHER
5758 call SetObject
59+ inc b
5860 ld d , Y_FEATHER_0 + TILE_HEIGHT
5961 call SetObject
6062
@@ -164,8 +166,10 @@ InitString:
164166 ld a , e
165167 sub TILE_WIDTH
166168 ld e , a
167- call SetObject
169+ call .nextRow
170+
168171 ld c , OAM_XFLIP
172+ ld a , e
169173 add TILE_WIDTH * 2
170174 ld e , a
171175 call SetObject
You can’t perform that action at this time.
0 commit comments