aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/dialogs.cpp
diff options
context:
space:
mode:
authorStrangerke2012-12-25 23:53:45 +0100
committerStrangerke2012-12-25 23:53:45 +0100
commit2b665c67cb85feec4e273162a38275f86d26f08e (patch)
treee8c00b4ebe8deee3da930a56b8a6acabcd274e39 /engines/hopkins/dialogs.cpp
parentf89001d75c73750a67ff6c8bc392c5b526fb803c (diff)
downloadscummvm-rg350-2b665c67cb85feec4e273162a38275f86d26f08e.tar.gz
scummvm-rg350-2b665c67cb85feec4e273162a38275f86d26f08e.tar.bz2
scummvm-rg350-2b665c67cb85feec4e273162a38275f86d26f08e.zip
HOPKINS: Add MOD file support
Diffstat (limited to 'engines/hopkins/dialogs.cpp')
-rw-r--r--engines/hopkins/dialogs.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/engines/hopkins/dialogs.cpp b/engines/hopkins/dialogs.cpp
index 0cd53bb9b0..19934f01df 100644
--- a/engines/hopkins/dialogs.cpp
+++ b/engines/hopkins/dialogs.cpp
@@ -79,7 +79,6 @@ void DialogsManager::showOptionsDialog() {
if (mousePos.x >= _vm->_graphicsManager.ofscroll + 300 && mousePos.y > 113 && mousePos.x <= _vm->_graphicsManager.ofscroll + 327 && mousePos.y <= 138) {
// Change the music volume
++_vm->_soundManager.MUSICVOL;
- _vm->_soundManager.OLD_MUSICVOL = _vm->_soundManager.MUSICVOL;
if (_vm->_soundManager.MUSICVOL <= 12)
_vm->_soundManager.playSound("bruit2.wav");
@@ -97,7 +96,6 @@ void DialogsManager::showOptionsDialog() {
else
_vm->_soundManager.MUSICVOL = 0;
- _vm->_soundManager.OLD_MUSICVOL = _vm->_soundManager.MUSICVOL;
_vm->_soundManager.MODSetMusicVolume(_vm->_soundManager.MUSICVOL);
_vm->_soundManager.updateScummVMSoundSettings();
@@ -110,7 +108,6 @@ void DialogsManager::showOptionsDialog() {
_vm->_soundManager.playSound("bruit2.wav");
else
_vm->_soundManager.SOUNDVOL = 16;
- _vm->_soundManager.OLD_SOUNDVOL = _vm->_soundManager.SOUNDVOL;
_vm->_soundManager.MODSetSampleVolume();
_vm->_soundManager.updateScummVMSoundSettings();
@@ -122,7 +119,6 @@ void DialogsManager::showOptionsDialog() {
_vm->_soundManager.playSound("bruit2.wav");
else
_vm->_soundManager.SOUNDVOL = 0;
- _vm->_soundManager.OLD_SOUNDVOL = _vm->_soundManager.SOUNDVOL;
_vm->_soundManager.MODSetSampleVolume();
_vm->_soundManager.updateScummVMSoundSettings();
@@ -137,7 +133,6 @@ void DialogsManager::showOptionsDialog() {
_vm->_soundManager.playSound("bruit2.wav");
else
_vm->_soundManager.VOICEVOL = 16;
- _vm->_soundManager.OLD_VOICEVOL = _vm->_soundManager.VOICEVOL;
_vm->_soundManager.MODSetVoiceVolume();
_vm->_soundManager.updateScummVMSoundSettings();
@@ -149,7 +144,6 @@ void DialogsManager::showOptionsDialog() {
_vm->_soundManager.playSound("bruit2.wav");
else
_vm->_soundManager.VOICEVOL = 0;
- _vm->_soundManager.OLD_VOICEVOL = _vm->_soundManager.VOICEVOL;
_vm->_soundManager.MODSetVoiceVolume();
_vm->_soundManager.updateScummVMSoundSettings();