summaryrefslogtreecommitdiff
path: root/engine/battle/scale_sprites.asm
diff options
context:
space:
mode:
Diffstat (limited to 'engine/battle/scale_sprites.asm')
-rw-r--r--engine/battle/scale_sprites.asm12
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/battle/scale_sprites.asm b/engine/battle/scale_sprites.asm
index c829fa13..c614d638 100644
--- a/engine/battle/scale_sprites.asm
+++ b/engine/battle/scale_sprites.asm
@@ -1,14 +1,14 @@
; scales both uncompressed sprite chunks by two in every dimension (creating 2x2 output pixels per input pixel)
; assumes that input sprite chunks are 4x4 tiles, and the rightmost and bottommost 4 pixels will be ignored
; resulting in a 7*7 tile output sprite chunk
-ScaleSpriteByTwo: ; 2fd79 (b:7d79)
+ScaleSpriteByTwo:
ld a, $0
call SwitchSRAMBankAndLatchClockData
call ScaleSpriteByTwo_
call PrepareRTCDataAndDisableSRAM
ret
-ScaleSpriteByTwo_: ; 2fd85 (b:7d85)
+ScaleSpriteByTwo_:
ld de, sSpriteBuffer1 + (4*4*8) - 5 ; last byte of input data, last 4 rows already skipped
ld hl, sSpriteBuffer0 + SPRITEBUFFERSIZE - 1 ; end of destination buffer
call ScaleLastSpriteColumnByTwo ; last tile column is special case
@@ -17,7 +17,7 @@ ScaleSpriteByTwo_: ; 2fd85 (b:7d85)
ld hl, sSpriteBuffer1 + SPRITEBUFFERSIZE - 1 ; end of destination buffer
call ScaleLastSpriteColumnByTwo ; last tile column is special case
-ScaleFirstThreeSpriteColumnsByTwo: ; 2fd9a (b:7d9a)
+ScaleFirstThreeSpriteColumnsByTwo:
ld b, $3 ; 3 tile columns
.columnLoop
ld c, 4*8 - 4 ; $1c, 4 tiles minus 4 unused rows
@@ -46,7 +46,7 @@ ScaleFirstThreeSpriteColumnsByTwo: ; 2fd9a (b:7d9a)
jr nz, .columnLoop
ret
-ScaleLastSpriteColumnByTwo: ; 2fdc2 (b:7dc2)
+ScaleLastSpriteColumnByTwo:
ld a, 4*8 - 4 ; $1c, 4 tiles minus 4 unused rows
ld [H_SPRITEINTERLACECOUNTER], a
ld bc, -1
@@ -68,7 +68,7 @@ ScaleLastSpriteColumnByTwo: ; 2fdc2 (b:7dc2)
; scales the given 4 bits in a (4x1 pixels) to 2 output bytes (8x2 pixels)
; hl: destination pointer
; bc: destination pointer offset (added after the two bytes have been written)
-ScalePixelsByTwo: ; 2fddc (b:7ddc)
+ScalePixelsByTwo:
push hl
and $f
ld hl, DuplicateBitsTable
@@ -85,7 +85,7 @@ ScalePixelsByTwo: ; 2fddc (b:7ddc)
ret
; repeats each input bit twice
-DuplicateBitsTable: ; 2fded (b:7ded)
+DuplicateBitsTable:
db $00, $03, $0c, $0f
db $30, $33, $3c, $3f
db $c0, $c3, $cc, $cf