mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-06-30 08:40:02 +00:00
[idd] driver: fix debug messages
This commit is contained in:
parent
75f07cb28c
commit
40a4debfda
@ -83,7 +83,7 @@ reInit:
|
|||||||
if (!NT_SUCCESS(status))
|
if (!NT_SUCCESS(status))
|
||||||
{
|
{
|
||||||
WdfObjectDelete(swapChain);
|
WdfObjectDelete(swapChain);
|
||||||
DEBUG_ERROR_HR(status, "IddCxMonitorSetupHardwareCursor Failed");
|
DEBUG_ERROR("IddCxMonitorSetupHardwareCursor Failed (0x%08x)", status);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -140,7 +140,7 @@ void CIndirectMonitorContext::CursorThread()
|
|||||||
NTSTATUS status = IddCxMonitorQueryHardwareCursor(m_monitor, &in, &out);
|
NTSTATUS status = IddCxMonitorQueryHardwareCursor(m_monitor, &in, &out);
|
||||||
if (FAILED(status))
|
if (FAILED(status))
|
||||||
{
|
{
|
||||||
DEBUG_ERROR_HR(status, "IddCxMonitorQueryHardwareCursor failed");
|
DEBUG_ERROR("IddCxMonitorQueryHardwareCursor failed (0x%08x)", status);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user