From 9efd950b9ff6ef2f2bf2109fae7ed0e66ccbcc55 Mon Sep 17 00:00:00 2001 From: lwvmobile Date: Sun, 15 Jan 2023 18:11:34 -0500 Subject: [PATCH] Fix Audio Gain on MBE File Playback; --- src/dsd_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dsd_main.c b/src/dsd_main.c index a9395b8..87200fc 100644 --- a/src/dsd_main.c +++ b/src/dsd_main.c @@ -2284,6 +2284,7 @@ main (int argc, char **argv) opts.pulse_digi_rate_out = 48000; opts.pulse_digi_out_channels = 1; openPulseOutput(&opts); //need to open it up for output + state.aout_gain = 25; //BUGFIX: No audio output when playing back .amb/.imb files playMbeFiles (&opts, &state, argc, argv); }