Skip to content

Commit

Permalink
Use hex for tile IDs in engine/movie/splash.asm
Browse files Browse the repository at this point in the history
  • Loading branch information
mid-kid committed Aug 27, 2020
1 parent 353f78f commit 3b43f79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/movie/splash.asm
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ GameFreakPresents_PlaceGameFreak:
ret

.game_freak
db 0, 1, 2, 3, 13, 4, 5, 3, 1, 6
db $00, $01, $02, $03, $0d, $04, $05, $03, $01, $06
.end
db "@"

Expand All @@ -181,7 +181,7 @@ GameFreakPresents_PlacePresents:
ret

.presents
db 7, 8, 9, 10, 11, 12
db $07, $08, $09, $0a, $0b, $0c
.end
db "@"

Expand Down

0 comments on commit 3b43f79

Please sign in to comment.