diff options
| author | entrpntr <entrpntr@gmail.com> | 2020-05-28 13:22:56 -0400 | 
|---|---|---|
| committer | entrpntr <entrpntr@gmail.com> | 2020-05-28 14:14:29 -0400 | 
| commit | 10d0d5d02babaace5c2af4a2e03bb0a4762c9c38 (patch) | |
| tree | 800dd879176638c94022b336c61f36115776a277 /engine | |
| parent | 34deb66c443af8ef7f36e24350d7f0069517ecd3 (diff) | |
Fill in sprite animation index constants, other minor cleanups.
Diffstat (limited to 'engine')
| -rw-r--r-- | engine/overworld/scripting.asm | 4 | ||||
| -rwxr-xr-x | engine/pokemon/evolve.asm | 2 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/engine/overworld/scripting.asm b/engine/overworld/scripting.asm index 7659c42d..7e7750a9 100644 --- a/engine/overworld/scripting.asm +++ b/engine/overworld/scripting.asm @@ -484,7 +484,7 @@ ret_96e71:  GiveItemScript:  	callasm ret_96e71 -	writetext ReceivedItemText +	writetext .ReceivedItemText  	iffalse .Full  	waitsfx  	specialsound @@ -497,7 +497,7 @@ GiveItemScript:  	pocketisfull  	end -ReceivedItemText: +.ReceivedItemText:  	text_far _ReceivedItemText  	text_end diff --git a/engine/pokemon/evolve.asm b/engine/pokemon/evolve.asm index cd7ad782..5c6d68b0 100755 --- a/engine/pokemon/evolve.asm +++ b/engine/pokemon/evolve.asm @@ -836,7 +836,7 @@ EvolutionAnimation:  .GenerateBallOfLight:  	push de  	depixel 9, 11 -	ld a, $25 +	ld a, SPRITE_ANIM_INDEX_EVOLUTION_BALL_OF_LIGHT  	call InitSpriteAnimStruct  	ld hl, SPRITEANIMSTRUCT_JUMPTABLE_INDEX  	add hl, bc | 
