From 017b472d140ad98923453e7dcbecc6d9c7bb0587 Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 29 Mar 2021 17:22:48 +0100 Subject: [PATCH] Fix error for fresh compiles (LOADED_MINIT was renamed into LOADED_CONFIG during dev. of previous commit) --- src/v_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v_video.c b/src/v_video.c index 40e1a13f6..f9f1d84ff 100644 --- a/src/v_video.c +++ b/src/v_video.c @@ -131,7 +131,7 @@ static boolean InitCube(void) float globalgammamul, globalgammaoffs; boolean doinggamma; - if (con_startup_loadprogress < LOADED_MINIT) + if (con_startup_loadprogress < LOADED_CONFIG) return false; #define diffcons(cv) (cv.value != atoi(cv.defaultvalue))