diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-10-29 21:19:24 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2020-10-29 21:19:24 -0500 |
commit | 3ba62db61d5526a9c951d82a8eb2b27c873f8476 (patch) | |
tree | 718f114abf5888b00def5caa9b4e9efe7144516f | |
parent | de91e24ec83a383c923008386c49a1bfe324d612 (diff) |
pointer up these strings
-rw-r--r-- | data/personality_test.s | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/data/personality_test.s b/data/personality_test.s index 0e04c38..774e4b7 100644 --- a/data/personality_test.s +++ b/data/personality_test.s @@ -87,15 +87,22 @@ gGenderText: @ 80F273C .global gUnknown_80F275C gUnknown_80F275C: @ 80F275C - .byte 0x7C, 0x27, 0x0F, 0x08 @ Pointer to boy text + .4byte BoyText @ Pointer to boy text .byte 0x00, 0x00, 0x00, 0x00 - .byte 0x74, 0x27, 0x0F, 0x08 @ Pointer to girl text + .4byte GirlText @ Pointer to girl text .byte 0x01, 0x00, 0x00, 0x00 .byte 0x00, 0x00, 0x00, 0x00 @ end of table .byte 0xFF, 0xFF, 0xFF, 0xFF + + .global GirlText + GirlText: .asciz "Girl." .align 2,0 + + .global BoyText + BoyText: .string "Boy." + .byte 0x00 .byte 0x01 .byte 0x02 |