]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vid_null.c
major cleanup of input code - CL_Move replaces most of IN_Move, IN_Commands, many...
[xonotic/darkplaces.git] / vid_null.c
index 5a0a448d0825c4e678bfcca709173a1d5807584f..a4c2f46b32d2e92a0c7a1f798fac0d341a0d4e44 100644 (file)
@@ -28,7 +28,7 @@ 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);
 }
@@ -75,20 +75,11 @@ void VID_Init(void)
        InitSig(); // trap evil signals
 }
 
-int VID_InitMode(int fullscreen, int width, int height, int bpp, int stencil)
+int VID_InitMode(int fullscreen, int width, int height, int bpp)
 {
        return false;
 }
 
-int GL_OpenLibrary(const char *name)
-{
-       return false;
-}
-
-void GL_CloseLibrary(void)
-{
-}
-
 void *GL_GetProcAddress(const char *name)
 {
        return NULL;
@@ -98,10 +89,6 @@ void Sys_SendKeyEvents(void)
 {
 }
 
-void IN_Commands(void)
-{
-}
-
-void IN_Move(usercmd_t *cmd)
+void IN_Move(void)
 {
 }