Attempt to make the 4th CPU manufacturer display in Configuration.

This commit is contained in:
OBattler
2016-07-24 04:38:02 +02:00
parent 9f59b19b06
commit 1c1982d64a

View File

@@ -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++;