summaryrefslogtreecommitdiff
path: root/home/pikachu.asm
diff options
context:
space:
mode:
Diffstat (limited to 'home/pikachu.asm')
-rwxr-xr-xhome/pikachu.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/home/pikachu.asm b/home/pikachu.asm
index 9e0ab541..bd750773 100755
--- a/home/pikachu.asm
+++ b/home/pikachu.asm
@@ -30,21 +30,21 @@ Func_152d:: ; 152d (0:152d)
pop hl
ret
-SetPikachuAsleep:: ; 153a (0:153a)
+DisablePikachuFollowingPlayer:: ; 153a (0:153a)
push hl
ld hl, wPikachuOverworldStateFlags
set 1, [hl]
pop hl
ret
-ResetPikachuAsleep:: ; 1542 (0:1542)
+EnablePikachuFollowingPlayer:: ; 1542 (0:1542)
push hl
ld hl, wPikachuOverworldStateFlags
res 1, [hl]
pop hl
ret
-CheckPikachuAsleep:: ; 154a (0:154a)
+CheckPikachuFollowingPlayer:: ; 154a (0:154a)
push hl
ld hl, wPikachuOverworldStateFlags
bit 1, [hl]