aboutsummaryrefslogtreecommitdiff
path: root/tiles.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2024-12-12 23:37:37 +0900
committerAstatin <[email protected]>2024-12-12 23:37:37 +0900
commitb4934d36f8a2f572c491a0d62f94b757221c6b68 (patch)
tree63c991c51b204de39c11fbb79af955d5cd56cc04 /tiles.gbasm
parentbfc32de4fd80c7bb51283840abf21d48151b5feb (diff)
Fix unnecessarily large memcpy
Diffstat (limited to 'tiles.gbasm')
-rw-r--r--tiles.gbasm3
1 files changed, 2 insertions, 1 deletions
diff --git a/tiles.gbasm b/tiles.gbasm
index 08aa49a..ae0e031 100644
--- a/tiles.gbasm
+++ b/tiles.gbasm
@@ -1,8 +1,9 @@
Load_Tile:
LD HL, $8020
LD DE, =OBJ_Tile_Image_Data
- LD BC, $0280
+ LD BC, $0180
CALL =memcpy
+
LD HL, $8800
LD DE, =Font_Data
LD BC, $2b0