Commit 13cdcdae authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

wintab32: Change the LoadTabletInfo failure message from ERR to TRACE.

parent 93acf3a6
......@@ -156,16 +156,15 @@ static inline BOOL LoadTablet(void)
if (loaded == TI_START)
{
TRACE("Initializing the tablet to hwnd %p\n",hwndDefault);
if (pLoadTabletInfo && pLoadTabletInfo(hwndDefault))
{
TRACE("Initialized the tablet to hwnd %p\n", hwndDefault);
loaded = TI_OK;
}
else
{
TRACE("Failed to initialize the tablet to hwnd %p\n", hwndDefault);
loaded = TI_FAIL;
ERR("LoadTabletInfo(%p) failed\n", hwndDefault);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment