From 74336d952d7705551f0ef434067d0137ef06cf41 Mon Sep 17 00:00:00 2001 From: RedDevilus Date: Wed, 2 Dec 2020 22:00:26 +0100 Subject: [PATCH] SPU2: Change VolumeSteps 42 to 5 This will change the PageUp/PageDown and also to clicks near/far but still on the slidebar and the jumps are changed from 42 to 5 , scroll wheel will still be 2 and all the arrows keys on 1. If you click and hold and then move just outside of the slider you now get nice jumps of multitudes of 5. Dragging the slider will not be affected. --- pcsx2/SPU2/Windows/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/SPU2/Windows/Config.cpp b/pcsx2/SPU2/Windows/Config.cpp index 503a2a3ccc..a61ed01d34 100644 --- a/pcsx2/SPU2/Windows/Config.cpp +++ b/pcsx2/SPU2/Windows/Config.cpp @@ -268,7 +268,7 @@ BOOL CALLBACK ConfigProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) SetWindowText(GetDlgItem(hWnd, IDC_LATENCY_LABEL), temp); int configvol = (int)(FinalVolume * 100 + 0.5f); - INIT_SLIDER(IDC_VOLUME_SLIDER, 0, 100, 10, 42, 1); + INIT_SLIDER(IDC_VOLUME_SLIDER, 0, 100, 10, 5, 1); SendDialogMsg(hWnd, IDC_VOLUME_SLIDER, TBM_SETPOS, TRUE, configvol); swprintf_s(temp, L"%d%%", configvol);