aboutsummaryrefslogtreecommitdiffstats
path: root/engine/overworld/emotion_bubbles.asm
diff options
context:
space:
mode:
authordannye <33dannye@gmail.com>2024-10-09 21:56:57 -0500
committerdannye <33dannye@gmail.com>2024-10-09 21:56:57 -0500
commit942c5f13eadb828dbf9dd6f75dfece007b53f353 (patch)
tree0013406b83f352bed3f9b8247e7a73d11a150828 /engine/overworld/emotion_bubbles.asm
parentRename off-by-one wram labels (diff)
parentRenamed pokemon-asm-tools to gb-asm-tools (diff)
downloadpokeyellow-942c5f13eadb828dbf9dd6f75dfece007b53f353.tar.gz
pokeyellow-942c5f13eadb828dbf9dd6f75dfece007b53f353.tar.xz
pokeyellow-942c5f13eadb828dbf9dd6f75dfece007b53f353.zip
Merge branch 'master' of https://github.com/pret/pokered
Diffstat (limited to 'engine/overworld/emotion_bubbles.asm')
-rw-r--r--engine/overworld/emotion_bubbles.asm11
1 files changed, 7 insertions, 4 deletions
diff --git a/engine/overworld/emotion_bubbles.asm b/engine/overworld/emotion_bubbles.asm
index 61bbc4f5..da9502b0 100644
--- a/engine/overworld/emotion_bubbles.asm
+++ b/engine/overworld/emotion_bubbles.asm
@@ -54,7 +54,7 @@ EmotionBubble:
add $8
ld c, a
- ld de, EmotionBubblesOAM
+ ld de, EmotionBubblesOAMBlock
xor a
call WriteOAMBlock
ld c, 60
@@ -66,9 +66,12 @@ EmotionBubble:
ret
-EmotionBubblesOAM:
- dbsprite 0, -1, 0, 0, $f9, 0
- dbsprite 0, -1, 0, 2, $fb, 0
+EmotionBubblesOAMBlock:
+; tile ID, attributes
+ db $f8, 0
+ db $f9, 0
+ db $fa, 0
+ db $fb, 0
EmotionBubbles:
ShockEmote: INCBIN "gfx/emotes/shock.2bpp"