diff --git a/src/r_main.cpp b/src/r_main.cpp index bc31300ef..c5849d980 100644 --- a/src/r_main.cpp +++ b/src/r_main.cpp @@ -148,8 +148,6 @@ static CV_PossibleValue_t secbright_cons_t[] = {{0, "MIN"}, {255, "MAX"}, {0, NU static void Fov_OnChange(void); -consvar_t cv_tailspickup = CVAR_INIT ("tailspickup", "On", CV_NETVAR|CV_NOSHOWHELP, CV_OnOff, NULL); - // if enabled, load all graphics at level load consvar_t cv_precachetextures = CVAR_INIT ("precachetextures", "On", CV_SAVE, CV_OnOff, NULL); @@ -1797,7 +1795,6 @@ void R_RegisterEngineStuff(void) UINT8 i; CV_RegisterVar(&cv_gravity); - CV_RegisterVar(&cv_tailspickup); CV_RegisterVar(&cv_allowmlook); CV_RegisterVar(&cv_homremoval); diff --git a/src/r_main.h b/src/r_main.h index dbc0b89c6..d5af7669a 100644 --- a/src/r_main.h +++ b/src/r_main.h @@ -155,7 +155,6 @@ extern consvar_t cv_drawdist, cv_drawdist_precip; extern consvar_t cv_playerfade; extern consvar_t cv_fov[MAXSPLITSCREENPLAYERS]; extern consvar_t cv_skybox; -extern consvar_t cv_tailspickup; extern consvar_t cv_debugfinishline; extern consvar_t cv_secbright;