Skip to content

Commit

Permalink
Disable usemodelpack by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Lactozilla committed Jan 9, 2024
1 parent 990f053 commit e5a8d92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hardware/hw_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -6657,7 +6657,7 @@ static CV_PossibleValue_t glfiltermode_cons_t[] = {{HWD_SET_TEXTUREFILTER_POINTS
{0, NULL}};
CV_PossibleValue_t glanisotropicmode_cons_t[] = {{1, "MIN"}, {16, "MAX"}, {0, NULL}};

consvar_t cv_usemodelpack = CVAR_INIT ("usemodelpack", "On", CV_SAVE | CV_CALL | CV_NOINIT, CV_OnOff, CV_modelpack_OnChange);
consvar_t cv_usemodelpack = CVAR_INIT ("usemodelpack", "Off", CV_SAVE | CV_CALL | CV_NOINIT, CV_OnOff, CV_modelpack_OnChange);
consvar_t cv_modelpack = CVAR_INIT ("modelpack", "modelpacks/default.zip", CV_SAVE | CV_CALL | CV_NOINIT, NULL, CV_modelpack_OnChange);

consvar_t cv_glshaders = CVAR_INIT ("gr_shaders", "On", CV_SAVE, glshaders_cons_t, NULL);
Expand Down

0 comments on commit e5a8d92

Please sign in to comment.