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

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alex Henrie 2018-10-25 08:59:47 -06:00 committed by Alexandre Julliard
parent 93acf3a695
commit 13cdcdae1a
1 changed files with 2 additions and 3 deletions

View File

@ -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);
}
}