aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound.h
diff options
context:
space:
mode:
authorJohannes Schickel2008-12-11 13:54:18 +0000
committerJohannes Schickel2008-12-11 13:54:18 +0000
commit2f1babd3703416362e5e8bda9ed03f59019daa8f (patch)
tree9bd0fd9367edb7a3a9c1c9c587a06802395c13f1 /engines/kyra/sound.h
parent30507498b0bf30c7bd6bfb20767979470b30b7ae (diff)
downloadscummvm-rg350-2f1babd3703416362e5e8bda9ed03f59019daa8f.tar.gz
scummvm-rg350-2f1babd3703416362e5e8bda9ed03f59019daa8f.tar.bz2
scummvm-rg350-2f1babd3703416362e5e8bda9ed03f59019daa8f.zip
Whoops changed integer size of variables storing volume information, now volume of 256 should work as expected.
svn-id: r35303
Diffstat (limited to 'engines/kyra/sound.h')
-rw-r--r--engines/kyra/sound.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/kyra/sound.h b/engines/kyra/sound.h
index 457802f4fb..b456e96185 100644
--- a/engines/kyra/sound.h
+++ b/engines/kyra/sound.h
@@ -348,8 +348,7 @@ private:
static void onTimer(void *data);
// Our channel handling
- uint8 _musicVolume;
- uint8 _sfxVolume;
+ int _musicVolume, _sfxVolume;
uint32 _fadeStartTime;
bool _fadeMusicOut;