From a4697c6fcb8706dbfaa6f4a8eaff3710b8b3a54d Mon Sep 17 00:00:00 2001 From: Garrett Cox Date: Thu, 3 Nov 2022 11:55:40 -0500 Subject: [PATCH] Change lineup tick default to off (#1899) --- soh/src/code/z_parameter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/src/code/z_parameter.c b/soh/src/code/z_parameter.c index 8f4497c8b..bbb50ccd9 100644 --- a/soh/src/code/z_parameter.c +++ b/soh/src/code/z_parameter.c @@ -5071,7 +5071,7 @@ void Interface_Draw(GlobalContext* globalCtx) { gDPSetEnvColor(OVERLAY_DISP++, 0, 0, 0, 0); } - if (CVar_GetS32("gDrawLineupTick", 1)) { + if (CVar_GetS32("gDrawLineupTick", 0)) { Interface_DrawLineupTick(globalCtx); }