foxygit / doom Log in
commit e98349c7eb0512d68c95d93a76cee0e8ffff899a
Author:     Turo Lamminen <turol@iki.fi>
AuthorDate: Thu Sep 8 15:21:07 2022 +0300
Commit:     Turo Lamminen <turol@iki.fi>
CommitDate: Fri Sep 30 13:01:53 2022 +0300

    setup: Remove static qualifier from some variables
---
 src/setup/sound.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/setup/sound.c b/src/setup/sound.c
index e4035073..2b38b3bb 100644
--- a/src/setup/sound.c
+++ b/src/setup/sound.c
@@ -71,9 +71,9 @@ static int show_talk = 0;
 int use_libsamplerate = 0;
 float libsamplerate_scale = 0.65;

-static char *music_pack_path = NULL;
-static char *timidity_cfg_path = NULL;
-static char *fluidsynth_sf_path = NULL;
+char *music_pack_path = NULL;
+char *timidity_cfg_path = NULL;
+char *fluidsynth_sf_path = NULL;
 static char *gus_patch_path = NULL;
 static int gus_ram_kb = 1024;
 #ifdef _WIN32