diff options
author | aaaaaa123456789 <aaaaaa123456789@acidch.at> | 2017-07-06 18:28:11 -0300 |
---|---|---|
committer | aaaaaa123456789 <aaaaaa123456789@acidch.at> | 2017-07-06 18:28:11 -0300 |
commit | 686a1a0633f449361d8281dfb0f4d2bcbc315602 (patch) | |
tree | f6cd210afc103787f95d089d05cf0f108c828a27 /home/text.asm | |
parent | 23a4406b79d52752f0f5e0893fc149434d0a7021 (diff) |
Updated code to comply with newer rgbds (and remove unnecessary memory access brackets where there is no memory access)
Diffstat (limited to 'home/text.asm')
-rwxr-xr-x | home/text.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/text.asm b/home/text.asm index 72cec7e..1901676 100755 --- a/home/text.asm +++ b/home/text.asm @@ -380,7 +380,7 @@ Func_32cc: ; 0x32cc pop af ld e, a ld d, wBottomMessageText / $100 - ld hl, [sp+$5] + ld hl, sp + 5 lb bc, 8, 1 .asm_32ec ld a, [hl] @@ -519,7 +519,7 @@ Func_3372: ; 0x3372 pop af ld e, a ld d, wBottomMessageText / $100 - ld hl, [sp+$5] + ld hl, sp + 5 lb bc, 8, 1 .asm_338a ld a, [hl] |