aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/draci.h
diff options
context:
space:
mode:
authorRobert Špalek2009-10-12 22:27:23 +0000
committerRobert Špalek2009-10-12 22:27:23 +0000
commite77928440307f0d8a765e32100e031989ad25ff5 (patch)
tree970e4c758de39c9c5f97bc6557428a0363a07101 /engines/draci/draci.h
parentd306e1219e606f5af6b3dd37556f1ba1ecb5ed51 (diff)
downloadscummvm-rg350-e77928440307f0d8a765e32100e031989ad25ff5.tar.gz
scummvm-rg350-e77928440307f0d8a765e32100e031989ad25ff5.tar.bz2
scummvm-rg350-e77928440307f0d8a765e32100e031989ad25ff5.zip
Sound effects are now correctly played.
Dubbing is not yet played. svn-id: r45000
Diffstat (limited to 'engines/draci/draci.h')
-rw-r--r--engines/draci/draci.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/draci/draci.h b/engines/draci/draci.h
index d5683d5516..6ef339de33 100644
--- a/engines/draci/draci.h
+++ b/engines/draci/draci.h
@@ -66,6 +66,7 @@ public:
Game *_game;
Script *_script;
AnimationManager *_anims;
+ Sound *_sound;
Font *_smallFont;
Font *_bigFont;
@@ -99,7 +100,8 @@ enum {
kDraciBytecodeDebugLevel = 1 << 1,
kDraciArchiverDebugLevel = 1 << 2,
kDraciLogicDebugLevel = 1 << 3,
- kDraciAnimationDebugLevel = 1 << 4
+ kDraciAnimationDebugLevel = 1 << 4,
+ kDraciSoundDebugLevel = 1 << 5
};
// Macro to simulate lround() for non-C99 compilers