diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-11-17 13:33:03 -0500 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-11-18 12:41:11 -0500 |
| commit | 3202c4f3dfeac64d815e3b5ee3ee8e891c2b1ba2 (patch) | |
| tree | f71e627c4af610124b7f77cc4a9c2dad2adf02f6 /engine/games | |
| parent | c05a2d255befc2d3b7fdf3c5375fa9a015c13632 (diff) | |
Resolve issue #575: Rename text commands
Diffstat (limited to 'engine/games')
| -rw-r--r-- | engine/games/card_flip.asm | 16 | ||||
| -rw-r--r-- | engine/games/dummy_game.asm | 6 | ||||
| -rw-r--r-- | engine/games/slot_machine.asm | 16 |
3 files changed, 19 insertions, 19 deletions
diff --git a/engine/games/card_flip.asm b/engine/games/card_flip.asm index 3dd6327b9..827d51af9 100644 --- a/engine/games/card_flip.asm +++ b/engine/games/card_flip.asm @@ -118,7 +118,7 @@ _CardFlip: .PlayWithThreeCoinsText: ; Play with three coins? text_far UnknownText_0x1c5793 - db "@" + text_end .DeductCoins: ld a, [wCoins] @@ -158,7 +158,7 @@ _CardFlip: .NotEnoughCoinsText: ; Not enough coins… text_far UnknownText_0x1c57ab - db "@" + text_end .ChooseACard: xor a @@ -235,7 +235,7 @@ _CardFlip: .ChooseACardText: ; Choose a card. text_far UnknownText_0x1c57be - db "@" + text_end .PlaceYourBet: ld hl, .PlaceYourBetText @@ -257,7 +257,7 @@ _CardFlip: .PlaceYourBetText: ; Place your bet. text_far UnknownText_0x1c57ce - db "@" + text_end .CheckTheCard: xor a @@ -328,12 +328,12 @@ _CardFlip: .PlayAgainText: ; Want to play again? text_far UnknownText_0x1c57df - db "@" + text_end .CardsShuffledText: ; The cards have been shuffled. text_far UnknownText_0x1c57f4 - db "@" + text_end .Quit: ld hl, wJumptableIndex @@ -1115,12 +1115,12 @@ CardFlip_CheckWinCondition: .Text_Yeah: ; Yeah! text_far UnknownText_0x1c5813 - db "@" + text_end .Text_Darn: ; Darn… text_far UnknownText_0x1c581a - db "@" + text_end .AddCoinPlaySFX: ld a, [wCoins] diff --git a/engine/games/dummy_game.asm b/engine/games/dummy_game.asm index 39053b214..582ae67f6 100644 --- a/engine/games/dummy_game.asm +++ b/engine/games/dummy_game.asm @@ -309,7 +309,7 @@ DummyGame_CheckMatch: ret .VictoryText: - start_asm + text_asm push bc hlcoord 2, 13 call DummyGame_PlaceCard @@ -323,12 +323,12 @@ DummyGame_CheckMatch: DummyGameText_Yeah: ; , yeah! text_far UnknownText_0x1c1a5b - db "@" + text_end DummyGameText_Darn: ; Darn… text_far UnknownText_0x1c1a65 - db "@" + text_end DummyGame_InitBoard: ld hl, wDummyGameCards diff --git a/engine/games/slot_machine.asm b/engine/games/slot_machine.asm index a60abda50..4a8ee9370 100644 --- a/engine/games/slot_machine.asm +++ b/engine/games/slot_machine.asm @@ -1750,17 +1750,17 @@ Slots_AskBet: .Text_BetHowManyCoins: ; Bet how many coins? text_far UnknownText_0x1c5049 - db "@" + text_end .Text_Start: ; Start! text_far UnknownText_0x1c505e - db "@" + text_end .Text_NotEnoughCoins: ; Not enough coins. text_far UnknownText_0x1c5066 - db "@" + text_end .MenuHeader: db MENU_BACKUP_TILES ; flags @@ -1806,11 +1806,11 @@ Slots_AskPlayAgain: .Text_OutOfCoins: text_far UnknownText_0x1c5079 - db "@" + text_end .Text_PlayAgain: text_far UnknownText_0x1c5092 - db "@" + text_end Slots_GetPayout: ld a, [wSlotMatched] @@ -1887,7 +1887,7 @@ Slots_PayoutText: dbw "15@@", .LinedUpMonOrCherry .Text_PrintPayout: - start_asm + text_asm ld a, [wSlotMatched] add $25 ldcoord_a 2, 13 @@ -1908,12 +1908,12 @@ endr .Text_LinedUpWonCoins: ; lined up! Won @ coins! text_far UnknownText_0x1c509f - db "@" + text_end .Text_Darn: ; Darn! text_far UnknownText_0x1c50bb - db "@" + text_end .LinedUpSevens: ld a, SFX_2ND_PLACE |
