From 02c68c3a705c5c9e97fb1f4d3456306fc8c05655 Mon Sep 17 00:00:00 2001 From: mittorn Date: Sat, 8 Feb 2020 23:48:52 +0700 Subject: [PATCH] platform/sdl: add missing Platform_Shutdown --- engine/platform/sdl/sys_sdl.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/engine/platform/sdl/sys_sdl.c b/engine/platform/sdl/sys_sdl.c index a82e49c2..a6573876 100644 --- a/engine/platform/sdl/sys_sdl.c +++ b/engine/platform/sdl/sys_sdl.c @@ -64,4 +64,8 @@ void Platform_Init( void ) #if XASH_POSIX Posix_Daemonize(); #endif +} + +void Platform_Shutdown( void ) +{ } \ No newline at end of file