diff options
author | uruk | 2014-07-25 20:29:42 +0200 |
---|---|---|
committer | uruk | 2014-07-25 20:29:42 +0200 |
commit | 98c6bfa0f573861517466fe06220a3730d314f40 (patch) | |
tree | 8ad5599a314419452b976fd297ed4a4c35e0fd63 /engines | |
parent | 22f1207cffa251a77748a0fe531ddb6ec000b332 (diff) | |
download | scummvm-rg350-98c6bfa0f573861517466fe06220a3730d314f40.tar.gz scummvm-rg350-98c6bfa0f573861517466fe06220a3730d314f40.tar.bz2 scummvm-rg350-98c6bfa0f573861517466fe06220a3730d314f40.zip |
CGE2: Fix broken compilation by previous commit.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/cge2/toolbar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge2/toolbar.cpp b/engines/cge2/toolbar.cpp index eafdaf4ce3..01943e2e45 100644 --- a/engines/cge2/toolbar.cpp +++ b/engines/cge2/toolbar.cpp @@ -215,9 +215,9 @@ void CGE2Engine::initToolbar() { _vol[1] = _vga->_showQ->locate(kMvolRef); if (_vol[0]) - _vol[0]->step(_sfxVolume / kVolumeSwtichRate); + _vol[0]->step(_sfxVolume / kVolumeSwitchRate); if (_vol[1]) - _vol[1]->step(_musicVolume / kVolumeSwtichRate); + _vol[1]->step(_musicVolume / kVolumeSwitchRate); // TODO: Recheck these! ^ } |