From f064b44f522ba1b3e837dc993cb95cea5227b2c7 Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Tue, 15 Mar 2011 13:17:21 +0000 Subject: [PATCH] SPU2-X: Fix the timestretch "Reset Defaults" Button to actually work (Winodws. Linux already works, I think.) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4436 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/spu2-x/src/Windows/ConfigSoundtouch.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/plugins/spu2-x/src/Windows/ConfigSoundtouch.cpp b/plugins/spu2-x/src/Windows/ConfigSoundtouch.cpp index 4cbee56144..7e78ebaae3 100644 --- a/plugins/spu2-x/src/Windows/ConfigSoundtouch.cpp +++ b/plugins/spu2-x/src/Windows/ConfigSoundtouch.cpp @@ -98,6 +98,16 @@ BOOL CALLBACK SoundtouchCfg::DialogProc(HWND hWnd,UINT uMsg,WPARAM wParam,LPARAM WriteSettings(); EndDialog(hWnd,0); } + else if( wmId == IDC_RESET_DEFAULTS ) + { + SequenceLenMS = 30; + SeekWindowMS = 20; + OverlapMS = 10; + + SendDialogMsg( hWnd, IDC_SEQLEN_SLIDER, TBM_SETPOS, TRUE, SequenceLenMS ); + SendDialogMsg( hWnd, IDC_SEEKWIN_SLIDER, TBM_SETPOS, TRUE, SeekWindowMS ); + SendDialogMsg( hWnd, IDC_OVERLAP_SLIDER, TBM_SETPOS, TRUE, OverlapMS ); + } else if( wmId == IDCANCEL ) { EndDialog(hWnd,0);