Skip to content

Commit b7f0137

Browse files
authored
Rename wPressPlayText to PressPlayText (#108)
Since it's in ROM, not in WRAM.
1 parent 7c2b9c7 commit b7f0137

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

galactic-armada/src/main/states/title-screen/title-screen-state.asm

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ INCLUDE "src/main/utils/macros/text-macros.inc"
44

55
SECTION "TitleScreenState", ROM0
66

7-
wPressPlayText:: db "press a to play", 255
7+
PressPlayText:: db "press a to play", 255
88
99
titleScreenTileData: INCBIN "src/generated/backgrounds/title-screen.2bpp"
1010
titleScreenTileDataEnd:
@@ -23,7 +23,7 @@ InitTitleScreenState::
2323

2424
; Call Our function that draws text onto background/window tiles
2525
ld de, $99C3
26-
ld hl, wPressPlayText
26+
ld hl, PressPlayText
2727
call DrawTextTilesLoop
2828

2929
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

0 commit comments

Comments
 (0)