From a3b976b9b29962eca3a67f0e6aa840385522201c Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Fri, 20 Oct 2017 22:02:25 -0400 Subject: [PATCH] Whoops, forgot to save two files ^^; --- src/d_netcmd.c | 2 +- src/m_menu.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index 688241ae..8e35f65d 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -701,7 +701,7 @@ void D_RegisterClientCommands(void) // time attack ghost options are also saved to config CV_RegisterVar(&cv_ghost_bestscore); CV_RegisterVar(&cv_ghost_besttime); - CV_RegisterVar(&cv_ghost_bestrings); + //CV_RegisterVar(&cv_ghost_bestlap); CV_RegisterVar(&cv_ghost_last); CV_RegisterVar(&cv_ghost_guest); CV_RegisterVar(&cv_ghost_staff); diff --git a/src/m_menu.c b/src/m_menu.c index c3160b80..4e4be837 100644 --- a/src/m_menu.c +++ b/src/m_menu.c @@ -414,7 +414,7 @@ CV_PossibleValue_t ghost2_cons_t[] = {{0, "Hide"}, {1, "Show"}, {0, NULL}}; consvar_t cv_ghost_bestscore = {"ghost_bestscore", "Show All", CV_SAVE, ghost_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL}; consvar_t cv_ghost_besttime = {"ghost_besttime", "Show All", CV_SAVE, ghost_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL}; -consvar_t cv_ghost_bestrings = {"ghost_bestrings", "Show All", CV_SAVE, ghost_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL}; +//consvar_t cv_ghost_bestlap = {"ghost_bestlap", "Show All", CV_SAVE, ghost_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL}; consvar_t cv_ghost_last = {"ghost_last", "Show All", CV_SAVE, ghost_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL}; consvar_t cv_ghost_guest = {"ghost_guest", "Show", CV_SAVE, ghost2_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL}; consvar_t cv_ghost_staff = {"ghost_staff", "Show", CV_SAVE, ghost2_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL};