X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=vid_null.c;h=41be51fab82ee2bf756314c48cfdd21ca4493321;hb=f792149bc8fc42556c2fcf2f9c8521de9d735468;hp=19af599e4ec84bc71fdf902893140bc269b7821d;hpb=08cfbcc087c853e657a505fd4dc985539921650c;p=xonotic%2Fdarkplaces.git diff --git a/vid_null.c b/vid_null.c index 19af599e..41be51fa 100644 --- a/vid_null.c +++ b/vid_null.c @@ -22,13 +22,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. int cl_available = false; +qboolean vid_supportrefreshrate = false; + void VID_Shutdown(void) { } void signal_handler(int sig) { - printf("Received signal %d, exiting...\n", sig); + Con_Printf("Received signal %d, exiting...\n", sig); Sys_Quit(); exit(0); } @@ -49,13 +51,6 @@ void InitSig(void) #endif } -void VID_GetWindowSize (int *x, int *y, int *width, int *height) -{ - *x = *y = 0; - *width = 1; - *height = 1; -} - void VID_Finish (void) { } @@ -75,7 +70,7 @@ void VID_Init(void) InitSig(); // trap evil signals } -int VID_InitMode(int fullscreen, int width, int height, int bpp) +int VID_InitMode(int fullscreen, int width, int height, int bpp, int refreshrate) { return false; } @@ -89,10 +84,6 @@ void Sys_SendKeyEvents(void) { } -void IN_Commands(void) -{ -} - void IN_Move(void) { }