[WIN32SS][NTGDI] Remove useless assert (#4370) CORE-17561

Remove useless ASSERT(FALSE); in IntGdiCreateDisplayDC, because it actually does not check anything useful. It only asserts each time when the function is called from DxEngCreateMemoryDC by MS DirectDraw stack (ddraw.dll & dxg.sys).
UNIMPLEMENTED debug print is enough a lot to see that this function is not implemented properly.
CORE-17561
This commit is contained in:
Oleg Dubinskiy 2022-02-18 23:00:57 +02:00 committed by GitHub
parent 81943afb7b
commit 9ab5d3afb2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1064,7 +1064,6 @@ IntGdiCreateDisplayDC(HDEV hDev, ULONG DcType, BOOL EmptyDC)
{
HDC hDC;
UNIMPLEMENTED;
ASSERT(FALSE);
if (DcType == DC_TYPE_MEMORY)
hDC = NtGdiCreateCompatibleDC(NULL); // OH~ Yuck! I think I taste vomit in my mouth!