From c7f33590102cfe730274ca057504fa18346fbf7c Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 4 Jun 2017 17:34:29 +0200 Subject: [PATCH] The MIDI OUT device selection box is now enabled when standalone MPU-401 is enabled in Settings. --- src/WIN/win_settings.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/WIN/win_settings.c b/src/WIN/win_settings.c index cd0e3007a..6dc8ef98f 100644 --- a/src/WIN/win_settings.c +++ b/src/WIN/win_settings.c @@ -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: