fixed my boo-boo. Sound dialog will now look and see if Mute Turbo should be checked upon dialog initialization.
This commit is contained in:
parent
59c1688d54
commit
689c700b0c
|
@ -1,5 +1,5 @@
|
|||
---version 2.0.3 released---
|
||||
|
||||
15-aug-2008 - adelikat - fixed an oversight on my part. Sound config dialog will now look to see if Mute Turbo should be checked
|
||||
|
||||
---version 2.0.2 released---
|
||||
|
||||
|
|
|
@ -393,6 +393,7 @@ static void UpdateSD(HWND hwndDlg)
|
|||
// CheckDlgButton(hwndDlg,123,(soundoptions&SO_SECONDARY)?BST_CHECKED:BST_UNCHECKED);
|
||||
CheckDlgButton(hwndDlg,CHECK_SOUND_GLOBAL_FOCUS,(soundoptions&SO_GFOCUS)?BST_CHECKED:BST_UNCHECKED);
|
||||
CheckDlgButton(hwndDlg,CHECK_SOUND_MUTEFA,(soundoptions&SO_MUTEFA)?BST_CHECKED:BST_UNCHECKED);
|
||||
CheckDlgButton(hwndDlg,CHECK_SOUND_MUTETURBO,(muteTurbo)?BST_CHECKED:BST_UNCHECKED);
|
||||
// The option formerly flagged by SO_OLDUP can no longer be enabled.
|
||||
// CheckDlgButton(hwndDlg,131,(soundoptions&SO_OLDUP)?BST_CHECKED:BST_UNCHECKED);
|
||||
SendDlgItemMessage(hwndDlg,COMBO_SOUND_QUALITY,CB_SETCURSEL,soundquality,(LPARAM)(LPSTR)0);
|
||||
|
|
Loading…
Reference in New Issue