[GDI32][NTUSER] Demote noisy debug prints

This commit is contained in:
Timo Kreuzer 2024-08-27 10:33:40 +03:00
parent c3560c6830
commit 34586814ab
2 changed files with 2 additions and 2 deletions

View file

@ -573,7 +573,7 @@ ExtTextOutW(
} }
else // Do nothing, old explorer pops this off. else // Do nothing, old explorer pops this off.
{ {
DPRINT1("GdiBCExtTextOut nothing\n"); DPRINT("GdiBCExtTextOut nothing\n");
return TRUE; return TRUE;
} }
} // Max 580 wchars, if offset 0 } // Max 580 wchars, if offset 0

View file

@ -155,7 +155,7 @@ IntSendSyncPaint(PWND Wnd, ULONG Flags)
Message = CONTAINING_RECORD(Entry, USER_SENT_MESSAGE, ListEntry); Message = CONTAINING_RECORD(Entry, USER_SENT_MESSAGE, ListEntry);
do do
{ {
ERR("LOOP it\n"); TRACE("LOOP it\n");
if (Message->Msg.message == WM_SYNCPAINT && if (Message->Msg.message == WM_SYNCPAINT &&
Message->Msg.hwnd == UserHMGetHandle(Wnd)) Message->Msg.hwnd == UserHMGetHandle(Wnd))
{ // Already received so exit out. { // Already received so exit out.