aboutsummaryrefslogtreecommitdiff
path: root/bunny.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2024-08-09 21:54:31 +0900
committerAstatin <astatin@redacted>2024-08-09 21:54:31 +0900
commitb69779d5e2d982dd7ec9de2ad071ccc344526d90 (patch)
tree091a26f36fa592fb91a6e4c25c42c14905291e39 /bunny.gbasm
parent9790dc65026c22f26ea6e247c5506b88f36691a4 (diff)
Fix viewport
Diffstat (limited to 'bunny.gbasm')
-rw-r--r--bunny.gbasm4
1 files changed, 3 insertions, 1 deletions
diff --git a/bunny.gbasm b/bunny.gbasm
index 04d14a9..2be262c 100644
--- a/bunny.gbasm
+++ b/bunny.gbasm
@@ -5,9 +5,11 @@ Initialize_Bunny:
LD $mem_bunny_y, A
LD A, $08
LD $reg_viewport_x, A
+ LD A, $08
+ LD $reg_viewport_y, A
LD A, $50
LD $mem_bunny_x_px, A
- LD A, $48
+ LD A, $40
LD $mem_bunny_y_px, A
RET