diff options
author | yenatch <yenatch@gmail.com> | 2014-06-16 13:05:16 -0700 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-06-16 13:07:00 -0700 |
commit | 94dc6955431171d4dba5833e5784e102dd045b49 (patch) | |
tree | c6ff996d2403469f6e5b8e4f67167b6a839d7fa9 /home/vcopy.asm | |
parent | 35f2bb90d4a8f8e4dcac3fbab7d89cbc590285e8 (diff) |
Fix a typo in home/vcopy.asm.
This must have happened when the file got split out of home.asm.
Since it was the first character on the line, it was interpreted as a label.
Diffstat (limited to 'home/vcopy.asm')
-rw-r--r-- | home/vcopy.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/vcopy.asm b/home/vcopy.asm index 9f152841..71487cf1 100644 --- a/home/vcopy.asm +++ b/home/vcopy.asm @@ -182,7 +182,7 @@ TransferBgRows:: ; 1d9e (0:1d9e) inc l ld [hl], d -i ld a, 32 - (20 - 1) + ld a, 32 - (20 - 1) add l ld l, a jr nc, .ok |