[client] spice: remove dpi which is no longer used

DPI was originally added to workaround cursor movement scaling, but since
due to changes with mouse handling, it's no longer required.
This commit is contained in:
Quantum
2021-07-17 02:19:52 -04:00
committed by Geoffrey McRae
parent d44d87ee7f
commit e0c9a71cd8
3 changed files with 1 additions and 10 deletions

View File

@@ -260,12 +260,10 @@ void core_updatePositionInfo(void)
g_cursor.useScale = (
srcH != g_state.dstRect.h ||
srcW != g_state.dstRect.w ||
g_cursor.guest.dpiScale != 100);
srcW != g_state.dstRect.w);
g_cursor.scale.x = (float)srcW / (float)g_state.dstRect.w;
g_cursor.scale.y = (float)srcH / (float)g_state.dstRect.h;
g_cursor.dpiScale = g_cursor.guest.dpiScale / 100.0f;
if (!g_state.posInfoValid)
{