]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sys_unix.c
physics: fix and refactor unsticking
[xonotic/darkplaces.git] / sys_unix.c
diff --git a/sys_unix.c b/sys_unix.c
deleted file mode 100644 (file)
index 78b6eeb..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-
-#ifdef WIN32
-#include <windows.h>
-#include <mmsystem.h>
-#else
-#include <sys/time.h>
-#endif
-
-#include "darkplaces.h"
-
-sys_t sys;
-
-// =======================================================================
-// General routines
-// =======================================================================
-void Sys_SDL_Shutdown(void)
-{
-}
-
-void Sys_SDL_Dialog(const char *title, const char *string)
-{
-}
-
-char *Sys_GetClipboardData (void)
-{
-       return NULL;
-}
-
-void Sys_SDL_Init(void)
-{
-}
-
-qbool sys_supportsdlgetticks = false;
-unsigned int Sys_SDL_GetTicks (void)
-{
-       Sys_Error("Called Sys_SDL_GetTicks on non-SDL target");
-       return 0;
-}
-void Sys_SDL_Delay (unsigned int milliseconds)
-{
-       Sys_Error("Called Sys_SDL_Delay on non-SDL target");
-}