From 1c1982d64a1d4631aa5661faee65f216d726aab9 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 24 Jul 2016 04:38:02 +0200 Subject: [PATCH] Attempt to make the 4th CPU manufacturer display in Configuration. --- src/win-config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win-config.c b/src/win-config.c index acc1e20e1..38c83b5d9 100644 --- a/src/win-config.c +++ b/src/win-config.c @@ -460,7 +460,7 @@ static BOOL CALLBACK config_dlgproc(HWND hdlg, UINT message, WPARAM wParam, LPAR temp_cpu_m = SendMessage(h, CB_GETCURSEL, 0, 0); SendMessage(h, CB_RESETCONTENT, 0, 0); c = 0; - while (models[temp_model].cpu[c].cpus != NULL && c < 3) + while (models[temp_model].cpu[c].cpus != NULL && c < 4) { SendMessage(h,CB_ADDSTRING,0,(LPARAM)(LPCSTR)models[temp_model].cpu[c].name); c++;