From fe57866d9aa0cc2ebf48411eaf7bb4180cf85a84 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Tue, 11 Dec 2018 21:35:11 +0100 Subject: [PATCH] fixed compiler warning due to missing function prototype --- src/libgame/sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libgame/sdl.c b/src/libgame/sdl.c index a4fc6fa0..2c8e116a 100644 --- a/src/libgame/sdl.c +++ b/src/libgame/sdl.c @@ -38,7 +38,7 @@ void sge_Line(SDL_Surface *, Sint16, Sint16, Sint16, Sint16, Uint32); #if defined(USE_TOUCH_INPUT_OVERLAY) // functions to draw overlay graphics for touch device input -static void DrawTouchInputOverlay(); +static void DrawTouchInputOverlay(void); #endif void SDLLimitScreenUpdates(boolean enable) -- 2.34.1