diff options
author | Stephen Simpson <megazig@gmail.com> | 2011-10-11 00:17:09 -0500 |
---|---|---|
committer | Stephen Simpson <megazig@gmail.com> | 2011-10-11 00:17:09 -0500 |
commit | 0640921a4a2e9e359da8d59fcbbe2df73c603a19 (patch) | |
tree | 46138f8dfd5fb8c033364adddbbf97faf67555a9 | |
parent | 10cf77e8d624b18d8e9be7f6fd4c6b207da3f432 (diff) | |
download | kamek-0640921a4a2e9e359da8d59fcbbe2df73c603a19.tar.gz kamek-0640921a4a2e9e359da8d59fcbbe2df73c603a19.zip |
Fixed StopSoundBasic extern and EMBARRASING 0xa768 mistake
Diffstat (limited to '')
-rw-r--r-- | src/soundPlayer.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soundPlayer.S b/src/soundPlayer.S index 0eb165a..1a95b7c 100644 --- a/src/soundPlayer.S +++ b/src/soundPlayer.S @@ -19,7 +19,7 @@ .extern AnotherSoundRelatedFunction .extern YetAnotherSoundPlayer .extern CheckIfPlayingSound -.extern StopSound +.extern StopSoundBasic .extern BufferToCheckIfPlaying .align 4 @@ -84,6 +84,6 @@ GoAwaySoundGuy: StopSound: mr r4, r3 - lwz r3, 0xA768(r13) + lwz r3, -0x5218(r13) b StopSoundBasic |