diff options
Diffstat (limited to 'home/cry.asm')
-rw-r--r-- | home/cry.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/cry.asm b/home/cry.asm index 19723643a..456037db4 100644 --- a/home/cry.asm +++ b/home/cry.asm @@ -1,7 +1,7 @@ PlayStereoCry:: ; 37b6 push af ld a, 1 - ld [$c2bc], a + ld [wc2bc], a pop af call _PlayCry call WaitSFX @@ -13,7 +13,7 @@ PlayStereoCry2:: ; 37c4 ; Used during pic animations. push af ld a, 1 - ld [$c2bc], a + ld [wc2bc], a pop af jp _PlayCry ; 37ce @@ -28,7 +28,7 @@ PlayCry2:: ; 37d5 ; Don't wait for the cry to end. push af xor a - ld [$c2bc], a + ld [wc2bc], a ld [CryTracks], a pop af call _PlayCry |