diff options
-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); |