commit 7343f9537890f37594de6ac8a1de74b601362392
Author: Turo Lamminen <turol@iki.fi>
AuthorDate: Thu Oct 6 11:59:31 2022 +0300
Commit: Turo Lamminen <turol@iki.fi>
CommitDate: Thu Oct 6 11:59:31 2022 +0300
setup: Remove static qualifier from some Windows-only variables
---
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 2b38b3bb..f95e8cdb 100644
--- a/src/setup/sound.c
+++ b/src/setup/sound.c
@@ -82,8 +82,8 @@ static char **midi_names;
static int midi_num_devices;
static int midi_index;
char *winmm_midi_device = NULL;
-static int winmm_reverb_level = 40;
-static int winmm_chorus_level = 0;
+int winmm_reverb_level = 40;
+int winmm_chorus_level = 0;
#endif
// DOS specific variables: these are unused but should be maintained