summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Harding <corrnondacqb@yahoo.com>2015-02-26 23:28:25 -0500
committerDaniel Harding <corrnondacqb@yahoo.com>2015-02-26 23:28:25 -0500
commit25f0b7abcd66b9273f224790ed2fbe70141ce26d (patch)
tree1a3bf3d328f4a074a0002f75b7ff502af99d1e0d
parentd8d0893d94e652c8c5ebf347498e86a369bf1051 (diff)
parent6cb51a1c4efe543b153219677ba5a842d189ff98 (diff)
Merge pull request #82 from dannye/master
Label typo
-rwxr-xr-xengine/battle/b.asm6
-rw-r--r--text.asm2
2 files changed, 4 insertions, 4 deletions
diff --git a/engine/battle/b.asm b/engine/battle/b.asm
index 24a75af4..32534b17 100755
--- a/engine/battle/b.asm
+++ b/engine/battle/b.asm
@@ -3,14 +3,14 @@ DisplayEffectiveness: ; 2fb7b (b:7b7b)
and a, $7F
cp a, $0A
ret z
- ld hl, SupperEffectiveText
+ ld hl, SuperEffectiveText
jr nc, .done
ld hl, NotVeryEffectiveText
.done
jp PrintText
-SupperEffectiveText: ; 2fb8e (b:7b8e)
- TX_FAR _SupperEffectiveText
+SuperEffectiveText: ; 2fb8e (b:7b8e)
+ TX_FAR _SuperEffectiveText
db "@"
NotVeryEffectiveText: ; 2fb93 (b:7b93)
diff --git a/text.asm b/text.asm
index 7eac7b5a..10ff8511 100644
--- a/text.asm
+++ b/text.asm
@@ -1552,7 +1552,7 @@ _ComeBackText:: ; 89d15 (22:5d15)
line "Come back!"
done
-_SupperEffectiveText:: ; 89d22 (22:5d22)
+_SuperEffectiveText:: ; 89d22 (22:5d22)
text "It's super"
line "effective!"
prompt