diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-12-23 16:29:30 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-12-23 16:29:30 -0500 |
commit | 99e66c25577e367d6c7ca75fea8b466b54c3317a (patch) | |
tree | 56183dddfd540a395086a7540060c374f9541723 /data/text/battle.asm | |
parent | 1a054661ecac2d6075961e486213b6880c0afc4e (diff) |
Rename some labels
- Remove "Buffer" suffix from some byte and word quantities
- Change "Ptr" to "Pointer"
Fixes #789
Diffstat (limited to 'data/text/battle.asm')
-rw-r--r-- | data/text/battle.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/text/battle.asm b/data/text/battle.asm index fc2e3a1cf..d40f28f8d 100644 --- a/data/text/battle.asm +++ b/data/text/battle.asm @@ -87,7 +87,7 @@ SandstormHitsText: PerishCountText: text "<USER>'s" line "PERISH count is @" - text_decimal wDeciramBuffer, 1, 1 + text_decimal wTextDecimalByte, 1, 1 text "!" prompt @@ -670,7 +670,7 @@ SpiteEffectText: text_ram wStringBuffer1 text " was" cont "reduced by @" - text_decimal wDeciramBuffer, 1, 1 + text_decimal wTextDecimalByte, 1, 1 text "!" prompt @@ -1030,7 +1030,7 @@ SafeguardProtectText: MagnitudeText: text "Magnitude @" - text_decimal wDeciramBuffer, 1, 1 + text_decimal wTextDecimalByte, 1, 1 text "!" prompt |