diff options
author | Daniel Harding <33dannye@gmail.com> | 2018-04-22 14:29:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-22 14:29:01 -0500 |
commit | 9881745b964b35c9118874ca3f1be690181473b8 (patch) | |
tree | f39017a607f384c766bcc245a599ead54bf7c45a /engine/save.asm | |
parent | 8836e3e5166fa93b5c83a122317b0e53a97d6868 (diff) | |
parent | cfec16566e41ced2faa97a3a5314ba5bbc0d0395 (diff) |
Merge pull request #32 from pret/fix-bank-constants
Fix bank constants and use a macro for pcm data
Diffstat (limited to 'engine/save.asm')
-rwxr-xr-x | engine/save.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/save.asm b/engine/save.asm index bb2193a2..c28ba1f6 100755 --- a/engine/save.asm +++ b/engine/save.asm @@ -158,7 +158,7 @@ SaveSAV: call PrintText ld c,10 call DelayFrames - ld a, $b6 ; SFX_SAVE + ld a, SFX_SAVE call PlaySoundWaitForCurrent call WaitForSoundToFinish ld c,30 |