From 2da4a5942328910f0b19828ca66e87627d5c2157 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 7 Mar 2018 22:14:58 +0100 Subject: [PATCH] Increased the maximum selectable CD-ROM speed to 56x. --- src/win/win_settings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/win/win_settings.c b/src/win/win_settings.c index 6a746ae53..d06183d72 100644 --- a/src/win/win_settings.c +++ b/src/win/win_settings.c @@ -8,7 +8,7 @@ * * Windows 86Box Settings dialog handler. * - * Version: @(#)win_settings.c 1.0.41 2018/03/07 + * Version: @(#)win_settings.c 1.0.42 2018/03/07 * * Author: Miran Grca, * @@ -4409,7 +4409,7 @@ static void cdrom_add_locations(HWND hdlg) } h = GetDlgItem(hdlg, IDC_COMBO_CD_SPEED); - for (i = 1; i <= 52; i++) + for (i = 1; i <= 56; i++) { wsprintf(lptsTemp, L"%ix", i); SendMessage(h, CB_ADDSTRING, 0, (LPARAM) lptsTemp);