aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/sound
diff options
context:
space:
mode:
authorPaul Gilbert2017-09-05 21:11:06 -0400
committerPaul Gilbert2017-09-05 21:11:06 -0400
commit0c2fc12756311baf3457718fae7e9394aea390b8 (patch)
tree4ce13fb3a31c2da4d79657ed7a1ddd3f3056fed5 /engines/titanic/sound
parent128edeebda490794d0ce78d3d6d84beab29c2246 (diff)
downloadscummvm-rg350-0c2fc12756311baf3457718fae7e9394aea390b8.tar.gz
scummvm-rg350-0c2fc12756311baf3457718fae7e9394aea390b8.tar.bz2
scummvm-rg350-0c2fc12756311baf3457718fae7e9394aea390b8.zip
TITANIC: Hook up in-game sound sliders to ScummVM volumes
Diffstat (limited to 'engines/titanic/sound')
-rw-r--r--engines/titanic/sound/sound_manager.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/titanic/sound/sound_manager.h b/engines/titanic/sound/sound_manager.h
index 59a514ca3d..e07c62ddec 100644
--- a/engines/titanic/sound/sound_manager.h
+++ b/engines/titanic/sound/sound_manager.h
@@ -42,11 +42,13 @@ enum VolumeMode {
*/
class CSoundManager {
protected:
+ uint _handleCtr;
+ // Old volume levels, deprecated in favor of setting the volumes
+ // directly in the ScummVM mixer
double _musicPercent;
double _speechPercent;
double _masterPercent;
double _parrotPercent;
- uint _handleCtr;
public:
CSoundManager();
virtual ~CSoundManager() {}