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:
parent
93acf3a695
commit
13cdcdae1a
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue