diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-05-25 21:05:52 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-05-25 21:05:52 -0400 |
| commit | fe42ef8a88cce02fdee08b46d01dff8ba4b4b1f1 (patch) | |
| tree | 459707eb1cd55df3042740e52efa9aa185e2a3fd /engine/movie | |
| parent | 60f7ca40061da7ac5524636438f6bde10ea15ecb (diff) | |
Some uses of SCREEN_WIDTH and SCREEN_HEIGHT
Diffstat (limited to 'engine/movie')
| -rw-r--r-- | engine/movie/credits.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/movie/credits.asm b/engine/movie/credits.asm index a494d3681..650e056b7 100644 --- a/engine/movie/credits.asm +++ b/engine/movie/credits.asm @@ -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 |
