From 01a274baf722723c040e28ed9dec2f1f0b67a77f Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sat, 9 Apr 2011 12:33:56 +0000 Subject: [PATCH] * Actually call Sys_PlatformExit --- code/sys/sys_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/sys/sys_main.c b/code/sys/sys_main.c index 84db658b..c30bbf65 100644 --- a/code/sys/sys_main.c +++ b/code/sys/sys_main.c @@ -207,6 +207,8 @@ static void Sys_Exit( int exitCode ) remove( Sys_PIDFileName( ) ); } + Sys_PlatformExit( ); + exit( exitCode ); }