From 9d3d6437424992ce5400596aaf7b26b08a1b574d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 18 Jul 2015 00:03:34 -0400 Subject: [PATCH] Patched to compile on Raspberry Pi. --- src/video/raspberry/SDL_rpimouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/raspberry/SDL_rpimouse.c b/src/video/raspberry/SDL_rpimouse.c index 838196e79..f8ee4ec61 100644 --- a/src/video/raspberry/SDL_rpimouse.c +++ b/src/video/raspberry/SDL_rpimouse.c @@ -48,7 +48,7 @@ static int RPI_ShowCursor(SDL_Cursor * cursor); static void RPI_MoveCursor(SDL_Cursor * cursor); static void RPI_FreeCursor(SDL_Cursor * cursor); static void RPI_WarpMouse(SDL_Window * window, int x, int y); -static void RPI_WarpMouseGlobal(int x, int y); +static int RPI_WarpMouseGlobal(int x, int y); static SDL_Cursor * RPI_CreateDefaultCursor(void)