From 3de6f290e7724369424ec33dd56b60fbc393460c Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Sun, 22 Jan 2017 19:03:12 -0600 Subject: SCI: Change default master MIDI volume to 15 GK1 handles MIDI volume by changing the volumes of individual sound objects, rather than by using the MIDI master volume. As a result, the master volume needs to default to the maximum output level in order for GK1 to play music at the correct volume. This change does not affect earlier games, since SCI16 managed MIDI volume via the master volume, and for these games the master volume from ScummVM is synced at startup. --- engines/sci/sound/music.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/sci/sound/music.cpp b/engines/sci/sound/music.cpp index 1808cf367f..dd9fbcb456 100644 --- a/engines/sci/sound/music.cpp +++ b/engines/sci/sound/music.cpp @@ -38,7 +38,7 @@ namespace Sci { SciMusic::SciMusic(SciVersion soundVersion, bool useDigitalSFX) - : _soundVersion(soundVersion), _soundOn(true), _masterVolume(0), _globalReverb(0), _useDigitalSFX(useDigitalSFX) { + : _soundVersion(soundVersion), _soundOn(true), _masterVolume(15), _globalReverb(0), _useDigitalSFX(useDigitalSFX) { // Reserve some space in the playlist, to avoid expensive insertion // operations -- cgit v1.2.3