diff options
| author | notyourav <65437533+notyourav@users.noreply.github.com> | 2021-03-22 01:31:55 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-22 01:31:55 -0700 |
| commit | 8e3bebad007d5ba082ffb14aafbb2be94dfd8fcd (patch) | |
| tree | e7c2acbaf8ff9f900487b36e01405a48bc5b2749 /src/script.c | |
| parent | ed3cf7d025a2053ea42dfbd791bc393c91cd385e (diff) | |
| parent | 1c99c78d7476a5fd8f586f4ac53b297f2ca67459 (diff) | |
Merge pull request #144 from notyourav/pr
Implement audio mus/sfx enum
Diffstat (limited to 'src/script.c')
| -rw-r--r-- | src/script.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/script.c b/src/script.c index 3f19bf23..0710080c 100644 --- a/src/script.c +++ b/src/script.c @@ -1,4 +1,5 @@ #include "global.h" +#include "audio.h" #include "flags.h" #include "entity.h" #include "area.h" @@ -1466,7 +1467,7 @@ void ScriptCommand_SoundReq3(Entity* entity, ScriptExecutionContext* context) { } void ScriptCommand_SoundReq0x80100000(Entity* entity, ScriptExecutionContext* context) { - SoundReq(0x80100000); + SoundReq(SONG_RESET_UNK); } void ScriptCommand_ModRupees(Entity* entity, ScriptExecutionContext* context) { |
