aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/qt_sdl
diff options
context:
space:
mode:
authorArisotura <thetotalworm@gmail.com>2020-05-24 23:47:11 +0200
committerArisotura <thetotalworm@gmail.com>2020-05-24 23:47:11 +0200
commitbc4a83abca991effe082f76f81cd6b4eef6ef0ba (patch)
tree97ea9f7a327a2bb1638b381f4a4bb9c924133761 /src/frontend/qt_sdl
parent16252a85e70feaa1bd10312a357ac74bd677ade3 (diff)
make frontend-util audio module config-agnostic
Diffstat (limited to 'src/frontend/qt_sdl')
-rw-r--r--src/frontend/qt_sdl/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/qt_sdl/main.cpp b/src/frontend/qt_sdl/main.cpp
index 0e0a21b..fac4709 100644
--- a/src/frontend/qt_sdl/main.cpp
+++ b/src/frontend/qt_sdl/main.cpp
@@ -110,7 +110,7 @@ void audioCallback(void* data, Uint8* stream, int len)
num_in = len_in-margin;
}
- Frontend::AudioOut_Resample(buf_in, num_in, (s16*)stream, len);
+ Frontend::AudioOut_Resample(buf_in, num_in, (s16*)stream, len, Config::AudioVolume);
}