]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vid_null.c
alias mdl/md2 models now have a mdlmd2data_triangleneighbors array
[xonotic/darkplaces.git] / vid_null.c
index 2b4d3b029e60462869ea8bf0ceeb93025209ffcc..5505ea67910d511d4cd6fcfc2976e3594096b620 100644 (file)
@@ -23,9 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 int cl_available = false;
 
-// global video state
-viddef_t vid;
-
 void VID_Shutdown(void)
 {
 }
@@ -67,11 +64,16 @@ int VID_SetGamma(float prescale, float gamma, float scale, float base)
        return FALSE;
 }
 
-void VID_Init(int fullscreen, int width, int height)
+void VID_Init(void)
 {
        InitSig(); // trap evil signals
 }
 
+int VID_InitMode(int fullscreen, int width, int height, int bpp)
+{
+       return false;
+}
+
 int GL_OpenLibrary(const char *name)
 {
        return false;
@@ -94,14 +96,6 @@ void IN_Commands(void)
 {
 }
 
-void IN_Init(void)
-{
-}
-
-void IN_Shutdown(void)
-{
-}
-
 void IN_Move(usercmd_t *cmd)
 {
 }