[Scummvm-git-logs] scummvm master -> 09b6e7bfaf1670866f0255f404aaebe9cb1cd434
antoniou79
a.antoniou79 at gmail.com
Thu May 28 13:20:35 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
09b6e7bfaf SKY: Correct invalid comment and code for default volume
Commit: 09b6e7bfaf1670866f0255f404aaebe9cb1cd434
https://github.com/scummvm/scummvm/commit/09b6e7bfaf1670866f0255f404aaebe9cb1cd434
Author: Thanasis Antoniou (a.antoniou79 at gmail.com)
Date: 2020-05-28T16:19:55+03:00
Commit Message:
SKY: Correct invalid comment and code for default volume
Changed paths:
engines/sky/sky.cpp
diff --git a/engines/sky/sky.cpp b/engines/sky/sky.cpp
index cbf02e49cc..7e86ee7a5c 100644
--- a/engines/sky/sky.cpp
+++ b/engines/sky/sky.cpp
@@ -347,10 +347,11 @@ Common::Error SkyEngine::init() {
}
}
- // Setup mixer: Default volume is set to 127 (the game engine's max volume)
- ConfMan.registerDefault("sfx_volume", 127);
- ConfMan.registerDefault("music_volume", 127);
- ConfMan.registerDefault("speech_volume", 127);
+ // Setup mixer: Default volume is set to 192 (ScummVM)
+ // which is 96 (in-game) volume
+ ConfMan.registerDefault("sfx_volume", 192);
+ ConfMan.registerDefault("music_volume", 192);
+ ConfMan.registerDefault("speech_volume", 192);
ConfMan.registerDefault("mute", "false");
syncSoundSettings();
More information about the Scummvm-git-logs
mailing list