diff options
author | Paul Gilbert | 2009-06-22 06:35:08 +0000 |
---|---|---|
committer | Paul Gilbert | 2009-06-22 06:35:08 +0000 |
commit | 640f322194e81d1959c737f12cd6f946236dca49 (patch) | |
tree | 155b78b9483695410746475ef7e1235e8405c8b3 | |
parent | 8dfbd0f845689a092615352b157a85bb779a3f1e (diff) | |
download | scummvm-rg350-640f322194e81d1959c737f12cd6f946236dca49.tar.gz scummvm-rg350-640f322194e81d1959c737f12cd6f946236dca49.tar.bz2 scummvm-rg350-640f322194e81d1959c737f12cd6f946236dca49.zip |
Added the dummy volume variable to the savegame format
svn-id: r41749
-rw-r--r-- | engines/cruise/sound.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/cruise/sound.cpp b/engines/cruise/sound.cpp index 64f628601a..d13a1673bb 100644 --- a/engines/cruise/sound.cpp +++ b/engines/cruise/sound.cpp @@ -821,6 +821,7 @@ void PCSound::startSound(int channelNum, const byte *ptr, int size, int speed, i void PCSound::doSync(Common::Serializer &s) { _player->doSync(s); + s.syncAsSint16LE(_genVolume); } const char *PCSound::musicName() { |