summary refs log tree commit diff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/fluidsynth.c2
-rw-r--r--src/modules/openmpt.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/fluidsynth.c b/src/modules/fluidsynth.c
index fd3c874..9eedc2c 100644
--- a/src/modules/fluidsynth.c
+++ b/src/modules/fluidsynth.c
@@ -36,7 +36,7 @@ int module_fluidsynth(struct blob *file, struct userdata *userdata) {
 	fs->settings = new_fluid_settings(); // wasteful, but when trying to 'fix' it it just caused more errors
 	fluid_settings_setnum(fs->settings, "synth.gain", 0.5);
 	fluid_settings_setint(fs->settings, "player.reset-synth", 0);
-	fluid_settings_setnum(fs->settings, "synth.sample-rate", 48000);
+	fluid_settings_setnum(fs->settings, "synth.sample-rate", SAMPLE_RATE);
 	fs->synth = new_fluid_synth(fs->settings);
 	char *soundfont_path = getenv("SOUNDFONT");
 	if (soundfont_path == NULL) {
diff --git a/src/modules/openmpt.c b/src/modules/openmpt.c
index 58c3994..027519f 100644
--- a/src/modules/openmpt.c
+++ b/src/modules/openmpt.c
@@ -4,7 +4,7 @@
 #include <libopenmpt/libopenmpt.h>
 
 static void openmpt_callback(void *mod, unsigned char *stream, int const length) {
-	openmpt_module_read_interleaved_float_stereo(mod, 48000, length / sizeof (float) / 2, (float *) stream);
+	openmpt_module_read_interleaved_float_stereo(mod, SAMPLE_RATE, length / sizeof (float) / 2, (float *) stream);
 }
 
 static void libopenmpt_example_logfunc( const char * message, void * userdata );