[client] app: fix spelling error

This commit is contained in:
Geoffrey McRae
2021-01-29 15:02:29 +11:00
parent aafdec02df
commit a00a6429d3
5 changed files with 8 additions and 8 deletions

View File

@@ -808,7 +808,7 @@ static void x11GenericEvent(XGenericEventCookie *cookie)
app_updateCursorPos(device->event_x, device->event_y);
if (!x11.pointerGrabbed)
app_handleMouseRelitive(0.0, 0.0, 0.0, 0.0);
app_handleMouseRelative(0.0, 0.0, 0.0, 0.0);
return;
}
@@ -857,7 +857,7 @@ static void x11GenericEvent(XGenericEventCookie *cookie)
prev_axis[0] = axis[0];
prev_axis[1] = axis[1];
app_handleMouseRelitive(axis[0], axis[1], raw_axis[0], raw_axis[1]);
app_handleMouseRelative(axis[0], axis[1], raw_axis[0], raw_axis[1]);
return;
}
}
@@ -1067,7 +1067,7 @@ static void x11WarpPointer(int x, int y, bool exiting)
static void x11RealignPointer(void)
{
app_handleMouseRelitive(0.0, 0.0, 0.0, 0.0);
app_handleMouseRelative(0.0, 0.0, 0.0, 0.0);
}
static bool x11IsValidPointerPos(int x, int y)