aboutsummaryrefslogtreecommitdiff
path: root/queen/command.h
diff options
context:
space:
mode:
authorJoost Peters2003-11-15 21:33:04 +0000
committerJoost Peters2003-11-15 21:33:04 +0000
commitf979f185af997c5f11ca57854a1874088477a898 (patch)
treef9dba888ba28273eb77bdda8cf32bba673fe90ef /queen/command.h
parentb938b63ddf4bd09db1bd1d36408a217d6d13b3f8 (diff)
downloadscummvm-rg350-f979f185af997c5f11ca57854a1874088477a898.tar.gz
scummvm-rg350-f979f185af997c5f11ca57854a1874088477a898.tar.bz2
scummvm-rg350-f979f185af997c5f11ca57854a1874088477a898.zip
- Enabled missing calls to _sound->playSong, now it should *really* play all SFX
- Moved sound/music related toggle variables to Sound class - Changed "Couldn't find file.." warning() to debug(7, ..) svn-id: r11303
Diffstat (limited to 'queen/command.h')
-rw-r--r--queen/command.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/queen/command.h b/queen/command.h
index fd11cb63a1..504fef771b 100644
--- a/queen/command.h
+++ b/queen/command.h
@@ -87,7 +87,7 @@ struct SelectedCmdState {
class Command {
public:
- Command(Logic*, Graphics*, Input*, Walk*);
+ Command(Logic*, Graphics*, Input*, Walk*, Sound*);
//! initialise command construction
void clear(bool clearTexts);
@@ -188,6 +188,7 @@ private:
Logic *_logic;
Graphics *_graphics;
Input *_input;
+ Sound *_sound;
Walk *_walk;
};