diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-10-30 12:26:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 12:26:04 -0400 |
commit | d831e40b99853c8e29e3939bb100b6ecf03b1028 (patch) | |
tree | 7d97e9277ee405a77046481100bf11adbc325367 /home/gfx.asm | |
parent | 26ddba8cfd8f035c06bd6419b64a6c4d7dbc226f (diff) | |
parent | db72c5103e807c4960ff62ca1764cac151288586 (diff) |
Merge pull request #64 from Rangi42/unreferenced
Comment, remove, or revise many unreferenced labels
Diffstat (limited to 'home/gfx.asm')
-rw-r--r-- | home/gfx.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home/gfx.asm b/home/gfx.asm index efb0499a..42929935 100644 --- a/home/gfx.asm +++ b/home/gfx.asm @@ -137,7 +137,7 @@ Request2bpp:: cp TILES_PER_CYCLE jr nc, .cycle - ld [wRequested2bpp], a + ld [wRequested2bppSize], a call DelayFrame pop af @@ -149,7 +149,7 @@ Request2bpp:: .cycle ld a, TILES_PER_CYCLE - ld [wRequested2bpp], a + ld [wRequested2bppSize], a call DelayFrame ld a, c @@ -182,7 +182,7 @@ Request1bpp:: cp TILES_PER_CYCLE jr nc, .cycle - ld [wRequested1bpp], a + ld [wRequested1bppSize], a call DelayFrame pop af @@ -194,7 +194,7 @@ Request1bpp:: .cycle ld a, TILES_PER_CYCLE - ld [wRequested1bpp], a + ld [wRequested1bppSize], a call DelayFrame ld a, c |