diff options
author | IIMarckus <iimarckus@gmail.com> | 2018-03-15 03:25:41 -0600 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2018-03-15 03:25:41 -0600 |
commit | aef186aa0d0a34ce271ac444d798f211a9c2e0d8 (patch) | |
tree | e26ada82913881d0011bb6199e4d4c91d712df91 | |
parent | d305a0fb7ff6822233dca3b2d9e3790983e709a1 (diff) |
Use binary instead of hexadecimal when setting BGP.
-rw-r--r-- | dmg.s | 2 | ||||
-rw-r--r-- | dmg0.s | 2 | ||||
-rw-r--r-- | mgb.s | 2 | ||||
-rw-r--r-- | sgb.s | 2 | ||||
-rw-r--r-- | sgb2.s | 2 | ||||
-rw-r--r-- | stadium_cgb.s | 2 |
6 files changed, 6 insertions, 6 deletions
@@ -24,7 +24,7 @@ vloop: ld [hl],a ; set background palette - ld a,$fc + ld a,%11111100 ld [$ff47],a ; convert and load logo data from cart into vram @@ -24,7 +24,7 @@ vloop: ld [hl],a ; set background palette - ld a,$fc + ld a,%11111100 ld [$ff47],a ; convert and load logo data from cart into vram @@ -24,7 +24,7 @@ vloop: ld [hl],a ; set background palette - ld a,$fc + ld a,%11111100 ld [$ff47],a ; convert and load logo data from cart into vram @@ -27,7 +27,7 @@ vloop: ld [hl],a ; set background palette - ld a,$fc + ld a,%11111100 ld [$ff47],a ld hl,$c05f ld c,8 @@ -27,7 +27,7 @@ vloop: ld [hl],a ; set background palette - ld a,$fc + ld a,%11111100 ld [$ff47],a ld hl,$c05f ld c,8 diff --git a/stadium_cgb.s b/stadium_cgb.s index b0b202a..16a9848 100644 --- a/stadium_cgb.s +++ b/stadium_cgb.s @@ -20,7 +20,7 @@ part2: ld [$ff40],a ; set background palette - ld a,$fc + ld a,%11111100 ld [$ff47],a call $0097 |