Some uses of SCREEN_WIDTH and SCREEN_HEIGHT

This commit is contained in:
Rangi
2020-05-25 21:05:52 -04:00
parent 60f7ca4006
commit fe42ef8a88
2 changed files with 10 additions and 5 deletions

View File

@@ -245,7 +245,7 @@ ParseCredits:
xor a
ldh [hBGMapMode], a
hlcoord 0, 5
ld bc, 20 * 12
ld bc, SCREEN_WIDTH * 12
ld a, " "
call ByteFill
@@ -306,7 +306,7 @@ ParseCredits:
.print
; Print strings spaced every two lines.
call .get
ld bc, 20 * 2
ld bc, SCREEN_WIDTH * 2
call AddNTimes
call PlaceString
jr .loop