The MIDI OUT device selection box is now enabled when standalone MPU-401 is enabled in Settings.

This commit is contained in:
OBattler
2017-06-04 17:34:29 +02:00
parent 8ca0565864
commit c7f3359010

View File

@@ -1273,6 +1273,9 @@ static BOOL CALLBACK win_settings_sound_proc(HWND hdlg, UINT message, WPARAM wPa
h = GetDlgItem(hdlg, IDC_CONFIGURE_MPU401);
EnableWindow(h, mpu401_present() ? TRUE : FALSE);
h = GetDlgItem(hdlg, IDC_COMBO_MIDI);
EnableWindow(h, mpu401_present() ? TRUE : FALSE);
break;
case IDC_CONFIGURE_MPU401: