summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-07-25 21:20:19 -0400
committeryenatch <yenatch@gmail.com>2013-07-25 21:20:19 -0400
commit45f52b0f71ee05a9d24e2acdf982a1634fefab47 (patch)
tree2655fa87206ef2d213bb7feaa8ade8551298be6e
parent4d72b06bccf62a4063e8a4c23faad2ef6e8c76c1 (diff)
Remove erroneous TileX/Y labels
-rw-r--r--main.asm4
-rw-r--r--wram.asm7
2 files changed, 2 insertions, 9 deletions
diff --git a/main.asm b/main.asm
index ecf5f8034..0cdc61695 100644
--- a/main.asm
+++ b/main.asm
@@ -3319,10 +3319,10 @@ Function1c47: ; 0x1c47
Function1c53: ; 0x1c53
ld a, [$cf82]
ld b, a
- ld a, [TileX]
+ ld a, [$cf84]
sub b
ld b, a
- ld a, [TileY]
+ ld a, [$cf83]
ld c, a
ld a, [$cf85]
sub c
diff --git a/wram.asm b/wram.asm
index 3cce27407..76bcc784d 100644
--- a/wram.asm
+++ b/wram.asm
@@ -837,13 +837,6 @@ CurSpecies: ; cf60
MenuSelection:; cf74
ds 1
- ds 14
-
-TileY: ; cf82
- ds 1
-TileX: ; cf83
- ds 1
-
SECTION "VBlank",BSS[$cfb1]