summaryrefslogtreecommitdiff
path: root/source/sv_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/sv_null.c')
-rw-r--r--source/sv_null.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/source/sv_null.c b/source/sv_null.c
index 7811846..19bdc6d 100644
--- a/source/sv_null.c
+++ b/source/sv_null.c
@@ -9,7 +9,6 @@ cvar_t *allow_download_demos;
cvar_t *allow_download_other;
cvar_t *rcon_password;
-cvar_t *mvd_running;
void SV_Init( void ) {
allow_download = Cvar_Get( "allow_download", "1", CVAR_ARCHIVE );
@@ -21,7 +20,6 @@ void SV_Init( void ) {
allow_download_other = Cvar_Get( "allow_download_other", "0", 0 );
rcon_password = Cvar_Get( "rcon_password", "", CVAR_PRIVATE );
- mvd_running = Cvar_Get( "mvd_running", "0", CVAR_ROM );
}
void SV_Shutdown( const char *finalmsg, killtype_t type ) {
@@ -30,15 +28,14 @@ void SV_Shutdown( const char *finalmsg, killtype_t type ) {
void SV_Frame( int msec ) {
}
-void SV_PacketEvent( int ret ) {
-}
-
-void MVD_PacketEvent( int ret ) {
+void SV_ProcessEvents( void ) {
}
+#if 0
qboolean MVD_GetDemoPercent( int *percent, int *bufferPercent ) {
*percent = 0;
*bufferPercent = 0;
return qfalse;
}
+#endif