aboutsummaryrefslogtreecommitdiff
path: root/main.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2024-08-04 15:49:59 +0900
committerAstatin <astatin@redacted>2024-08-04 15:49:59 +0900
commite20e0ce42d1c1fc65cea1a655d64f2c9b2efc17a (patch)
tree0d798e43c2e0becba0807bfec7de6b60e35ab73c /main.gbasm
parent0cb98aa2abb54e0a922ed9e3280e6b67aff5ba6a (diff)
Scrolling when bunny goes out of center
Diffstat (limited to 'main.gbasm')
-rw-r--r--main.gbasm2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.gbasm b/main.gbasm
index 6b701c8..6eb27f3 100644
--- a/main.gbasm
+++ b/main.gbasm
@@ -2,6 +2,7 @@
Entrypoint:
CALL =Load_Tile
+ CALL =Load_Number_Font
CALL =Initialize_Bunny
EI
@@ -16,5 +17,6 @@ VBLANK_Entrypoint:
RET
.INCLUDE "tiles.gbasm"
+.INCLUDE "print.gbasm"
.INCLUDE "bunny.gbasm"
.INCLUDE "buttons.gbasm"