]> git.xonotic.org Git - xonotic/darkplaces.git/blob - sys_null.c
physics: fix and refactor unsticking
[xonotic/darkplaces.git] / sys_null.c
1
2 #include "darkplaces.h"
3
4
5 // =======================================================================
6 // General routines
7 // =======================================================================
8
9 void Sys_SDL_Shutdown(void)
10 {
11 }
12
13 void Sys_SDL_Dialog(const char *title, const char *string)
14 {
15 }
16
17 char *Sys_SDL_GetClipboardData (void)
18 {
19         return NULL;
20 }
21
22 void Sys_SDL_Init(void)
23 {
24 }
25
26 qbool sys_supportsdlgetticks = false;
27 unsigned int Sys_SDL_GetTicks (void)
28 {
29         Sys_Error("Called Sys_SDL_GetTicks on non-SDL target");
30         return 0;
31 }
32 void Sys_SDL_Delay (unsigned int milliseconds)
33 {
34         Sys_Error("Called Sys_SDL_Delay on non-SDL target");
35 }