wgl: Return TRUE on wglReleasePbufferDCARB success.

This commit is contained in:
Roderick Colenbrander 2008-03-22 12:36:20 +00:00 committed by Alexandre Julliard
parent 3771341774
commit ccb4ee39ab
1 changed files with 1 additions and 2 deletions

View File

@ -2528,8 +2528,7 @@ static GLboolean WINAPI X11DRV_wglQueryPbufferARB(HPBUFFERARB hPbuffer, int iAtt
static int WINAPI X11DRV_wglReleasePbufferDCARB(HPBUFFERARB hPbuffer, HDC hdc)
{
TRACE("(%p, %p)\n", hPbuffer, hdc);
DeleteDC(hdc);
return 0;
return DeleteDC(hdc);
}
/**