Skip to content

Commit

Permalink
Rename wPressPlayText to PressPlayText (#108)
Browse files Browse the repository at this point in the history
Since it's in ROM, not in WRAM.
  • Loading branch information
CodeWithMa committed Aug 31, 2024
1 parent 7c2b9c7 commit b7f0137
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ INCLUDE "src/main/utils/macros/text-macros.inc"

SECTION "TitleScreenState", ROM0

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

; Call Our function that draws text onto background/window tiles
ld de, $99C3
ld hl, wPressPlayText
ld hl, PressPlayText
call DrawTextTilesLoop

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Expand Down

0 comments on commit b7f0137

Please sign in to comment.