foxygit / doom Log in
commit cc0e4a0b1db6345b8c358344786f5aa5c1d8a615
Author:     Turo Lamminen <turol@iki.fi>
AuthorDate: Mon Sep 5 23:06:06 2022 +0300
Commit:     Turo Lamminen <turol@iki.fi>
CommitDate: Tue Sep 27 14:04:16 2022 +0300

    setup: Remove static from some variables that are about to become extern
---
 src/setup/sound.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/setup/sound.c b/src/setup/sound.c
index 6a48228d..e4035073 100644
--- a/src/setup/sound.c
+++ b/src/setup/sound.c
@@ -68,8 +68,8 @@ static int sfxVolume = 8;
 static int musicVolume = 8;
 static int voiceVolume = 15;
 static int show_talk = 0;
-static int use_libsamplerate = 0;
-static float libsamplerate_scale = 0.65;
+int use_libsamplerate = 0;
+float libsamplerate_scale = 0.65;

 static char *music_pack_path = NULL;
 static char *timidity_cfg_path = NULL;