summaryrefslogtreecommitdiff
path: root/engine/games
diff options
context:
space:
mode:
authormid-kid <esteve.varela@gmail.com>2018-06-25 02:10:37 +0200
committermid-kid <esteve.varela@gmail.com>2018-06-25 02:10:37 +0200
commit5efce10789bc8291ca5517bdeaacab95459b3fdb (patch)
tree94eaaa56e9c7d869dd6ffe86be1abc0af3ccc2b9 /engine/games
parent0cbe04da44744073c4c164df970b1571b1fda1a6 (diff)
Remove even more address comments
That should be all of them this time
Diffstat (limited to 'engine/games')
-rw-r--r--engine/games/card_flip.asm24
-rw-r--r--engine/games/dummy_game.asm6
-rw-r--r--engine/games/slot_machine.asm23
3 files changed, 18 insertions, 35 deletions
diff --git a/engine/games/card_flip.asm b/engine/games/card_flip.asm
index 6fb3502af..9c095a784 100644
--- a/engine/games/card_flip.asm
+++ b/engine/games/card_flip.asm
@@ -115,11 +115,10 @@ _CardFlip:
ld [wJumptableIndex], a
ret
-.PlayWithThreeCoinsText: ; 0xe01cd
+.PlayWithThreeCoinsText:
; Play with three coins?
text_jump UnknownText_0x1c5793
db "@"
-; 0xe01d2
.DeductCoins:
ld a, [wCoins]
@@ -156,11 +155,10 @@ _CardFlip:
call .Increment
ret
-.NotEnoughCoinsText: ; 0xe0212
+.NotEnoughCoinsText:
; Not enough coins…
text_jump UnknownText_0x1c57ab
db "@"
-; 0xe0217
.ChooseACard:
xor a
@@ -234,11 +232,10 @@ _CardFlip:
call .Increment
ret
-.ChooseACardText: ; 0xe02b2
+.ChooseACardText:
; Choose a card.
text_jump UnknownText_0x1c57be
db "@"
-; 0xe02b7
.PlaceYourBet:
ld hl, .PlaceYourBetText
@@ -257,11 +254,10 @@ _CardFlip:
call .Increment
ret
-.PlaceYourBetText: ; 0xe02d5
+.PlaceYourBetText:
; Place your bet.
text_jump UnknownText_0x1c57ce
db "@"
-; 0xe02da
.CheckTheCard:
xor a
@@ -329,17 +325,15 @@ _CardFlip:
ld [wJumptableIndex], a
ret
-.PlayAgainText: ; 0xe0356
+.PlayAgainText:
; Want to play again?
text_jump UnknownText_0x1c57df
db "@"
-; 0xe035b
-.CardsShuffledText: ; 0xe035b
+.CardsShuffledText:
; The cards have been shuffled.
text_jump UnknownText_0x1c57f4
db "@"
-; 0xe0360
.Quit:
ld hl, wJumptableIndex
@@ -1119,17 +1113,15 @@ CardFlip_CheckWinCondition:
jr nz, .loop
ret
-.Text_Yeah: ; 0xe0811
+.Text_Yeah:
; Yeah!
text_jump UnknownText_0x1c5813
db "@"
-; 0xe0816
-.Text_Darn: ; 0xe0816
+.Text_Darn:
; Darn…
text_jump UnknownText_0x1c581a
db "@"
-; 0xe081b
.AddCoinPlaySFX:
ld a, [wCoins]
diff --git a/engine/games/dummy_game.asm b/engine/games/dummy_game.asm
index 02407eb98..89e2ea698 100644
--- a/engine/games/dummy_game.asm
+++ b/engine/games/dummy_game.asm
@@ -322,17 +322,15 @@ DummyGame_CheckMatch:
ret
-DummyGameText_Yeah: ; 0xe2093
+DummyGameText_Yeah:
; , yeah!
text_jump UnknownText_0x1c1a5b
db "@"
-; 0xe2098
-DummyGameText_Darn: ; 0xe2098
+DummyGameText_Darn:
; Darn…
text_jump UnknownText_0x1c1a65
db "@"
-; 0xe209d
DummyGame_InitBoard:
ld hl, wDummyGameCards
diff --git a/engine/games/slot_machine.asm b/engine/games/slot_machine.asm
index edde84d51..9864a5b9d 100644
--- a/engine/games/slot_machine.asm
+++ b/engine/games/slot_machine.asm
@@ -1795,38 +1795,33 @@ Slots_AskBet:
ret
-.Text_BetHowManyCoins: ; 0x930c7
+.Text_BetHowManyCoins:
; Bet how many coins?
text_jump UnknownText_0x1c5049
db "@"
-; 0x930cc
-.Text_Start: ; 0x930cc
+.Text_Start:
; Start!
text_jump UnknownText_0x1c505e
db "@"
-; 0x930d1
-.Text_NotEnoughCoins: ; 0x930d1
+.Text_NotEnoughCoins:
; Not enough coins.
text_jump UnknownText_0x1c5066
db "@"
-; 0x930d6
-.MenuHeader: ; 0x930d6
+.MenuHeader:
db MENU_BACKUP_TILES ; flags
menu_coords 14, 10, SCREEN_WIDTH - 1, SCREEN_HEIGHT - 1
dw .MenuData
db 1 ; default option
-; 0x930de
-.MenuData: ; 0x930de
+.MenuData:
db STATICMENU_CURSOR ; flags
db 3 ; items
db " 3@"
db " 2@"
db " 1@"
-; 0x930e9
Slots_AskPlayAgain:
ld hl, wCoins
@@ -1941,7 +1936,7 @@ Slots_PayoutText:
dbw "10@@", .LinedUpMonOrCherry
dbw "15@@", .LinedUpMonOrCherry
-.Text_PrintPayout: ; 0x931b9
+.Text_PrintPayout:
start_asm
ld a, [wSlotMatched]
add $25
@@ -1961,17 +1956,15 @@ endr
ret
-.Text_LinedUpWonCoins: ; 0x931db
+.Text_LinedUpWonCoins:
; lined up! Won @ coins!
text_jump UnknownText_0x1c509f
db "@"
-; 0x931e0
-.Text_Darn: ; 0x931e0
+.Text_Darn:
; Darn!
text_jump UnknownText_0x1c50bb
db "@"
-; 0x931e5
.LinedUpSevens:
ld a, SFX_2ND_PLACE