summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdelaide Walter <adelaidekwalter@gmail.com>2018-01-03 20:47:44 -0500
committerAdelaide Walter <adelaidekwalter@gmail.com>2018-01-03 20:47:44 -0500
commit5fd3bfa83210fd9885f7558d02b01fc5ea3c5ed1 (patch)
treed34b75d936a0d41c4218baf8b44ebd50befa8f76
parent9d0ba6bfd3b2f10fae9969a784aa7b2b573e8411 (diff)
Clarify the purpose of writing 0 to rSVBK.
-rw-r--r--engine/gbc_only.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/gbc_only.asm b/engine/gbc_only.asm
index a36efe04c..b2207d436 100644
--- a/engine/gbc_only.asm
+++ b/engine/gbc_only.asm
@@ -13,7 +13,7 @@ GBCOnlyScreen: ; 4ea82
ld de, wd000
ld a, [rSVBK]
push af
- ld a, 0 ; this is tantamount to selecting Bank 1
+ ld a, 0 ; this has the same effect as selecting bank 1 (http://gbdev.gg8.se/files/docs/mirrors/pandocs.html#videodisplay)
ld [rSVBK], a
call Decompress
pop af