]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sys.h
deduplicate Sys_Shutdown()
[xonotic/darkplaces.git] / sys.h
diff --git a/sys.h b/sys.h
index 41d595b927785c41770fc1a5f8a4b8d5cde037c5..1b076a697f6fdb3ef4673111e533b4594394b664 100644 (file)
--- a/sys.h
+++ b/sys.h
@@ -212,7 +212,7 @@ void Sys_Print(const char *text);
 void Sys_Printf(const char *fmt, ...);
 
 /// INFO: This is only called by Host_Shutdown so we dont need testing for recursion
-void Sys_Shutdown (void);
+void Sys_SDL_Shutdown(void);
 void Sys_Quit (int returnvalue);
 
 /*! on some build/platform combinations (such as Linux gcc with the -pg
@@ -241,6 +241,8 @@ char *Sys_ConsoleInput (void);
 /// called to yield for a little bit so as not to hog cpu when paused or debugging
 double Sys_Sleep(double time);
 
+void Sys_SDL_Dialog(const char *title, const char *string);
+void Sys_SDL_Init(void);
 /// Perform Key_Event () callbacks until the input que is empty
 void Sys_SDL_HandleEvents(void);