diff options
Diffstat (limited to 'data/text')
-rw-r--r-- | data/text/battle.asm | 6 | ||||
-rw-r--r-- | data/text/common_2.asm | 14 |
2 files changed, 10 insertions, 10 deletions
diff --git a/data/text/battle.asm b/data/text/battle.asm index 811a8e8c..a83095bc 100644 --- a/data/text/battle.asm +++ b/data/text/battle.asm @@ -80,7 +80,7 @@ SandstormHitsText: PerishCountText: text "<USER>'s" line "PERISH count is @" - text_decimal wDeciramBuffer, 1, 1 + text_decimal wTextDecimalByte, 1, 1 text "!" prompt @@ -656,7 +656,7 @@ SpiteEffectText: text_ram wStringBuffer1 text " was" cont "reduced by @" - text_decimal wDeciramBuffer, 1, 1 + text_decimal wTextDecimalByte, 1, 1 text "!" prompt @@ -1016,7 +1016,7 @@ SafeguardProtectText: MagnitudeText: text "Magnitude @" - text_decimal wDeciramBuffer, 1, 1 + text_decimal wTextDecimalByte, 1, 1 text "!" prompt diff --git a/data/text/common_2.asm b/data/text/common_2.asm index 9c8516fa..52399ab9 100644 --- a/data/text/common_2.asm +++ b/data/text/common_2.asm @@ -282,7 +282,7 @@ _AskThrowAwayText:: _AskQuantityThrowAwayText:: text "Throw away @" - text_decimal wItemQuantityChangeBuffer, 1, 2 + text_decimal wItemQuantityChange, 1, 2 text_start line "@" text_ram wStringBuffer2 @@ -745,7 +745,7 @@ _PlayersPCHowManyWithdrawText:: _PlayersPCWithdrewItemsText:: text "Withdrew @" - text_decimal wItemQuantityChangeBuffer, 1, 2 + text_decimal wItemQuantityChange, 1, 2 text_start line "@" text_ram wStringBuffer2 @@ -768,7 +768,7 @@ _PlayersPCHowManyDepositText:: _PlayersPCDepositItemsText:: text "Deposited @" - text_decimal wItemQuantityChangeBuffer, 1, 2 + text_decimal wItemQuantityChange, 1, 2 text_start line "@" text_ram wStringBuffer2 @@ -1004,7 +1004,7 @@ _ItemsTossOutHowManyText:: _ItemsThrowAwayText:: text "Throw away @" - text_decimal wItemQuantityChangeBuffer, 1, 2 + text_decimal wItemQuantityChange, 1, 2 text_start line "@" text_ram wStringBuffer2 @@ -1401,7 +1401,7 @@ _MartHowManyText:: done _MartFinalPriceText:: - text_decimal wItemQuantityChangeBuffer, 1, 2 + text_decimal wItemQuantityChange, 1, 2 text " @" text_ram wStringBuffer2 text "(S)" @@ -1430,7 +1430,7 @@ _HerbalLadyHowManyText:: done _HerbalLadyFinalPriceText:: - text_decimal wItemQuantityChangeBuffer, 1, 2 + text_decimal wItemQuantityChange, 1, 2 text " @" text_ram wStringBuffer2 text "(S)" @@ -1513,7 +1513,7 @@ _PharmacyHowManyText:: done _PharmacyFinalPriceText:: - text_decimal wItemQuantityChangeBuffer, 1, 2 + text_decimal wItemQuantityChange, 1, 2 text " @" text_ram wStringBuffer2 text "(S)" |