mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
client: Fix error when compiling with WITH_CHANNELS=OFF
This commit is contained in:
committed by
Bernhard Miklautz
parent
91ef44ed35
commit
5b9290fc6c
@@ -1133,8 +1133,7 @@ BOOL freerdp_client_send_button_event(rdpClientContext* cctx, BOOL relative, UIN
|
||||
{
|
||||
cctx->lastX += x;
|
||||
cctx->lastY += y;
|
||||
WLog_WARN(TAG, "Relative mouse input but channel %s not available, sending absolute!",
|
||||
AINPUT_DVC_CHANNEL_NAME);
|
||||
WLog_WARN(TAG, "Relative mouse input channel not available, sending absolute!");
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -1177,8 +1176,7 @@ BOOL freerdp_client_send_extended_button_event(rdpClientContext* cctx, BOOL rela
|
||||
{
|
||||
cctx->lastX += x;
|
||||
cctx->lastY += y;
|
||||
WLog_WARN(TAG, "Relative mouse input but channel %s not available, sending absolute!",
|
||||
AINPUT_DVC_CHANNEL_NAME);
|
||||
WLog_WARN(TAG, "Relative mouse input channel not available, sending absolute!");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user