Fix minimize bug

This commit is contained in:
pagefault
2004-05-03 20:37:21 +00:00
parent 4bb6f8e599
commit 7c18b45021

View File

@@ -624,10 +624,8 @@ LRESULT CALLBACK Main_Proc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
}
}
break;
default:
return DefWindowProc(hWnd,uMsg,wParam,lParam);
}
return 0;
return DefWindowProc(hWnd,uMsg,wParam,lParam);;
}
int RegisterWinClass(void)