mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[0.4.10][OPENGL32] Remove Err Log Spam from wglMakeCurrent in nominal cases (#3096) CORE-17224
The log-spam was triggered at end of 2nd stage and within some games.
fix picked from commit 0.4.15-dev-655-g ba006b3d49
This commit is contained in:
parent
3055283c57
commit
abf5d21bc2
1 changed files with 6 additions and 2 deletions
|
@ -735,9 +735,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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue