add DebugLogMini build config

This commit is contained in:
FunkyFr3sh 2023-08-10 14:41:42 +02:00
parent cb481f513b
commit 594cc4d8da
8 changed files with 63 additions and 18 deletions

View file

@ -844,9 +844,9 @@ HRESULT dds_GetClipper(IDirectDrawSurfaceImpl* This, IDirectDrawClipperImpl** lp
HRESULT dds_GetColorKey(IDirectDrawSurfaceImpl* This, DWORD dwFlags, LPDDCOLORKEY lpColorKey)
{
if (dwFlags != DDCKEY_SRCBLT)
if (dwFlags != DDCKEY_SRCBLT || !lpColorKey)
{
TRACE_EXT(" NOT_IMPLEMENTED dwFlags=%08X\n", dwFlags);
TRACE(" NOT_IMPLEMENTED dwFlags=%08X, lpColorKey=%p\n", dwFlags, lpColorKey);
}
if (lpColorKey)
@ -1024,7 +1024,7 @@ HRESULT dds_SetColorKey(IDirectDrawSurfaceImpl* This, DWORD dwFlags, LPDDCOLORKE
{
if (dwFlags != DDCKEY_SRCBLT || !lpColorKey)
{
TRACE_EXT(" NOT_IMPLEMENTED dwFlags=%08X, lpColorKey=%p\n", dwFlags, lpColorKey);
TRACE(" NOT_IMPLEMENTED dwFlags=%08X, lpColorKey=%p\n", dwFlags, lpColorKey);
}
if (lpColorKey)