diff options
Diffstat (limited to 'engine/overworld')
| -rwxr-xr-x | engine/overworld/emotion_bubbles.asm | 2 | ||||
| -rwxr-xr-x | engine/overworld/healing_machine.asm | 2 | ||||
| -rwxr-xr-x | engine/overworld/ledges.asm | 3 | ||||
| -rwxr-xr-x | engine/overworld/ssanne.asm | 3 | 
4 files changed, 6 insertions, 4 deletions
| diff --git a/engine/overworld/emotion_bubbles.asm b/engine/overworld/emotion_bubbles.asm index ebd441aa..f8665dd6 100755 --- a/engine/overworld/emotion_bubbles.asm +++ b/engine/overworld/emotion_bubbles.asm @@ -9,7 +9,7 @@ EmotionBubble: ; 17c47 (5:7c47)  	inc hl  	ld d, [hl]  	ld hl, vChars1 + $780 -	lb bc, BANK(EmotionBubblesPointerTable), $04 +	lb bc, BANK(EmotionBubbles), $04  	call CopyVideoData  	ld a, [wUpdateSpritesEnabled]  	push af diff --git a/engine/overworld/healing_machine.asm b/engine/overworld/healing_machine.asm index d3513b0d..3ab41d5f 100755 --- a/engine/overworld/healing_machine.asm +++ b/engine/overworld/healing_machine.asm @@ -1,7 +1,7 @@  AnimateHealingMachine: ; 70433 (1c:4433)  	ld de, PokeCenterFlashingMonitorAndHealBall  	ld hl, vChars0 + $7c0 -	lb bc, BANK(PokeCenterFlashingMonitorAndHealBall), $03 +	lb bc, BANK(PokeCenterFlashingMonitorAndHealBall), $03 ; loads one too many tiles  	call CopyVideoData  	ld hl, wUpdateSpritesEnabled  	ld a, [hl] diff --git a/engine/overworld/ledges.asm b/engine/overworld/ledges.asm index 5a3bfbe0..df4273fd 100755 --- a/engine/overworld/ledges.asm +++ b/engine/overworld/ledges.asm @@ -69,7 +69,7 @@ LedgeTiles: ; 1a6cf (6:66cf)  LoadHoppingShadowOAM: ; 1a6f0 (6:66f0)  	ld hl, vChars1 + $7f0  	ld de, LedgeHoppingShadow -	lb bc, BANK(LedgeHoppingShadow), $01 +	lb bc, BANK(LedgeHoppingShadow), (LedgeHoppingShadowEnd - LedgeHoppingShadow) / $8  	call CopyVideoDataDouble  	ld a, $9  	lb bc, $54, $48 ; b, c = y, x coordinates of shadow @@ -79,6 +79,7 @@ LoadHoppingShadowOAM: ; 1a6f0 (6:66f0)  LedgeHoppingShadow: ; 1a708 (6:6708)  	INCBIN "gfx/ledge_hopping_shadow.1bpp" +LedgeHoppingShadowEnd:  LedgeHoppingShadowOAM: ; 1a710 (6:6710)  	db $FF,$10,$FF,$20 diff --git a/engine/overworld/ssanne.asm b/engine/overworld/ssanne.asm index 1dccd026..e631bbfa 100755 --- a/engine/overworld/ssanne.asm +++ b/engine/overworld/ssanne.asm @@ -85,8 +85,9 @@ LoadSmokeTileFourTimes: ; 79fc0 (1e:5fc0)  LoadSmokeTile: ; 79fd4 (1e:5fd4)  	ld de, SSAnneSmokePuffTile -	lb bc, BANK(SSAnneSmokePuffTile), $01 +	lb bc, BANK(SSAnneSmokePuffTile), (SSAnneSmokePuffTileEnd - SSAnneSmokePuffTile) / $10  	jp CopyVideoData  SSAnneSmokePuffTile: ; 79fdd (1e:5fdd)  	INCBIN "gfx/ss_anne_smoke_puff.2bpp" +SSAnneSmokePuffTileEnd: | 
