diff options
| author | Arisotura <thetotalworm@gmail.com> | 2020-05-24 23:47:11 +0200 |
|---|---|---|
| committer | Arisotura <thetotalworm@gmail.com> | 2020-05-24 23:47:11 +0200 |
| commit | bc4a83abca991effe082f76f81cd6b4eef6ef0ba (patch) | |
| tree | 97ea9f7a327a2bb1638b381f4a4bb9c924133761 /src/frontend/qt_sdl | |
| parent | 16252a85e70feaa1bd10312a357ac74bd677ade3 (diff) | |
make frontend-util audio module config-agnostic
Diffstat (limited to 'src/frontend/qt_sdl')
| -rw-r--r-- | src/frontend/qt_sdl/main.cpp | 2 |
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); } |