summaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2015-08-14 02:46:12 -0700
committerYamaArashi <shadow962@live.com>2015-08-14 02:46:12 -0700
commitb6ac1018c29592d667a559016baa18301f21dad4 (patch)
treeed4bc64da7db87958b7b27e0e4590bcf27a2eddc /engine
parent599a6aeaaf81e7174577c782f3b3ba113a4a4c39 (diff)
add border constant and clear up misnomer
Diffstat (limited to 'engine')
-rwxr-xr-xengine/trade.asm10
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/trade.asm b/engine/trade.asm
index 0e816e05..66afa47e 100755
--- a/engine/trade.asm
+++ b/engine/trade.asm
@@ -552,14 +552,14 @@ Trade_CopyCableTilesOffScreen: ; 414ae (10:54ae)
; continues when the screen is scrolled.
push hl
coord hl, 0, 4
- call CopyToScreenEdgeTiles
+ call CopyToRedrawRowOrColumnSrcTiles
pop hl
ld a, h
- ld [H_SCREENEDGEREDRAWADDR + 1], a
+ ld [hRedrawRowOrColumnDest + 1], a
ld a, l
- ld [H_SCREENEDGEREDRAWADDR], a
- ld a, REDRAWROW
- ld [H_SCREENEDGEREDRAW], a
+ ld [hRedrawRowOrColumnDest], a
+ ld a, REDRAW_ROW
+ ld [hRedrawRowOrColumnMode], a
ld c, 10
jp DelayFrames