summaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
Diffstat (limited to 'engine')
-rwxr-xr-xengine/give_pokemon.asm6
-rwxr-xr-xengine/overworld/healing_machine.asm11
2 files changed, 5 insertions, 12 deletions
diff --git a/engine/give_pokemon.asm b/engine/give_pokemon.asm
index 49596782..241975c3 100755
--- a/engine/give_pokemon.asm
+++ b/engine/give_pokemon.asm
@@ -33,7 +33,7 @@ _GivePokemon:
.next
ld [hli], a
ld [hl], "@"
- ld hl, SetToBoxText
+ ld hl, SentToBoxText
call PrintText
scf
ret
@@ -73,8 +73,8 @@ GotMonText:
TX_SFX_ITEM_1
db "@"
-SetToBoxText:
- TX_FAR _SetToBoxText
+SentToBoxText:
+ TX_FAR _SentToBoxText
db "@"
BoxIsFullText:
diff --git a/engine/overworld/healing_machine.asm b/engine/overworld/healing_machine.asm
index 38a44cfb..73b3fa1f 100755
--- a/engine/overworld/healing_machine.asm
+++ b/engine/overworld/healing_machine.asm
@@ -89,16 +89,9 @@ FlashSprite8Times:
CopyHealingMachineOAM:
; copy one OAM entry and advance the pointers
+ rept 4
ld a, [de]
inc de
ld [hli], a
- ld a, [de]
- inc de
- ld [hli], a
- ld a, [de]
- inc de
- ld [hli], a
- ld a, [de]
- inc de
- ld [hli], a
+ endr
ret