Skip to content

Commit b286f46

Browse files
committed
add ufo to title tileset
1 parent b5146ca commit b286f46

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/chr/title_menu_tileset.png

-19.3 KB
Loading

src/playstate/gameover_rocket.asm

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,11 @@ handleRocket:
237237
lda #>spriteCathedralFire0
238238
sta $1
239239
lda frameCounter
240-
and #1
240+
.if INES_MAPPER = 0
241+
and #8 ; Every 8 frames for ufo
242+
.else
243+
and #1 ; Every other frame for cathedral
244+
.endif
241245
beq @otherFrame
242246
lda #<spriteCathedralFire1
243247
sta $0

0 commit comments

Comments
 (0)