[OPENGL32] Remove Err Log Spam from wglMakeCurrent in nominal cases (#3096)

CORE-17224
This commit is contained in:
Kyle Katarn 2020-08-26 18:56:52 +02:00 committed by GitHub
parent f87fb4e3df
commit ba006b3d49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -742,9 +742,13 @@ BOOL WINAPI wglMakeCurrent(HDC hdc, HGLRC hglrc)
else
{
/* Winetest conformance */
if (GetObjectType( hdc ) != OBJ_DC && GetObjectType( hdc ) != OBJ_MEMDC)
DWORD objType = GetObjectType(hdc);
if (objType != OBJ_DC && objType != OBJ_MEMDC)
{
ERR( "Error: hdc is not a DC handle!\n");
if (hdc)
{
ERR("hdc (%p) is not a DC handle (ObjectType: %d)!\n", hdc, objType);
}
SetLastError( ERROR_INVALID_HANDLE );
return FALSE;
}