diff options
author | Max Horn | 2010-01-29 11:03:54 +0000 |
---|---|---|
committer | Max Horn | 2010-01-29 11:03:54 +0000 |
commit | 4ffec28103972992482dbb552d7f302ea09c1a31 (patch) | |
tree | ccefa339cd087c7298274d1234d7e048def51390 /engines/sci/sound | |
parent | 52ef12547feee896c632b842f5aebbdcc9c84bd8 (diff) | |
download | scummvm-rg350-4ffec28103972992482dbb552d7f302ea09c1a31.tar.gz scummvm-rg350-4ffec28103972992482dbb552d7f302ea09c1a31.tar.bz2 scummvm-rg350-4ffec28103972992482dbb552d7f302ea09c1a31.zip |
SCI: Move selector stuff to new header; reorder k_argc & k_argp param of invoke_selector
svn-id: r47665
Diffstat (limited to 'engines/sci/sound')
-rw-r--r-- | engines/sci/sound/audio.cpp | 1 | ||||
-rw-r--r-- | engines/sci/sound/soundcmd.cpp | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/engines/sci/sound/audio.cpp b/engines/sci/sound/audio.cpp index 9c8ddacd90..7d2b67a111 100644 --- a/engines/sci/sound/audio.cpp +++ b/engines/sci/sound/audio.cpp @@ -24,6 +24,7 @@ */ #include "sci/resource.h" +#include "sci/engine/selector.h" #include "sci/engine/kernel.h" #include "sci/engine/seg_manager.h" #include "sci/sound/audio.h" diff --git a/engines/sci/sound/soundcmd.cpp b/engines/sci/sound/soundcmd.cpp index b9609014e7..5b30734045 100644 --- a/engines/sci/sound/soundcmd.cpp +++ b/engines/sci/sound/soundcmd.cpp @@ -33,6 +33,8 @@ #include "sci/sound/music.h" #include "sci/sound/soundcmd.h" +#include "sci/engine/selector.h" + namespace Sci { #define SCI1_SOUND_FLAG_MAY_PAUSE 1 /* Only here for completeness; The interpreter doesn't touch this bit */ |