From 524f57703fb362dd9a131edb1eb5aebad5ffe633 Mon Sep 17 00:00:00 2001 From: Rangi Date: Wed, 23 Dec 2020 16:46:49 -0500 Subject: Rename some labels - Remove "Buffer" suffix from some byte and word quantities - Change "Ptr" to "Pointer" --- data/text/battle.asm | 6 +++--- data/text/common_2.asm | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'data') 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 "'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)" -- cgit v1.2.3