[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

@@ -297,7 +297,7 @@ static int sdlEventFilter(void * userdata, SDL_Event * event)
break;
app_updateCursorPos(event->motion.x, event->motion.y);
app_handleMouseRelitive(event->motion.xrel, event->motion.yrel,
app_handleMouseRelative(event->motion.xrel, event->motion.yrel,
event->motion.xrel, event->motion.yrel);
break;
@@ -455,7 +455,7 @@ static void sdlWarpPointer(int x, int y, bool exiting)
static void sdlRealignPointer(void)
{
app_handleMouseRelitive(0.0, 0.0, 0.0, 0.0);
app_handleMouseRelative(0.0, 0.0, 0.0, 0.0);
}
static bool sdlIsValidPointerPos(int x, int y)