foxygit / doom Log in
commit f09667a3da971dc0fd4d4638d5c12a363d8b3945
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Thu Mar 27 21:24:17 2014 -0400
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Thu Mar 27 21:24:17 2014 -0400

    strife: Fix default music volume to match Vanilla.

    Strife's default music volume is 13 as opposed to Doom's value of 8.
    This was apparently not changed during the development of Chocolate
    Strife. Thanks to Alexandre-Xavier for noticing this and providing the
    correct value (bug #347).
---
 src/strife/s_sound.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/strife/s_sound.c b/src/strife/s_sound.c
index 513ab62d..9e43b428 100644
--- a/src/strife/s_sound.c
+++ b/src/strife/s_sound.c
@@ -95,7 +95,7 @@ int sfxVolume = 8;

 // Maximum volume of music.

-int musicVolume = 8;
+int musicVolume = 13;

 // haleyjd 08/29/10: [STRIFE] New global variable
 // Volume of voice channel.