diff options
author | Max Horn | 2004-12-27 16:23:21 +0000 |
---|---|---|
committer | Max Horn | 2004-12-27 16:23:21 +0000 |
commit | 1d44b0873fd124ddc394ec992c469cb079352e8b (patch) | |
tree | f0b8f8996cb3a6118c9ec0c2e4045575c3bf4e70 /sword2 | |
parent | 8290b5989fc2ffedf2e82379542c5fa3c48e0595 (diff) | |
download | scummvm-rg350-1d44b0873fd124ddc394ec992c469cb079352e8b.tar.gz scummvm-rg350-1d44b0873fd124ddc394ec992c469cb079352e8b.tar.bz2 scummvm-rg350-1d44b0873fd124ddc394ec992c469cb079352e8b.zip |
Fix volume regression my previous checkin caused
svn-id: r16337
Diffstat (limited to 'sword2')
-rw-r--r-- | sword2/driver/d_sound.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sword2/driver/d_sound.h b/sword2/driver/d_sound.h index da06c936c8..3a885a89b8 100644 --- a/sword2/driver/d_sound.h +++ b/sword2/driver/d_sound.h @@ -70,17 +70,17 @@ private: bool _musicPaused; bool _musicMuted; - uint _musicVol; + int _musicVol; PlayingSoundHandle _soundHandleSpeech; bool _speechPaused; bool _speechMuted; - uint _speechVol; + int _speechVol; FxHandle _fx[MAXFX]; bool _fxPaused; bool _fxMuted; - uint _fxVol; + int _fxVol; int32 getFxIndex(int32 id); void stopFxHandle(int i); |