Change lineup tick default to off (#1899)

This commit is contained in:
Garrett Cox 2022-11-03 11:55:40 -05:00 committed by GitHub
parent 75af33a04c
commit a4697c6fcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5071,7 +5071,7 @@ void Interface_Draw(GlobalContext* globalCtx) {
gDPSetEnvColor(OVERLAY_DISP++, 0, 0, 0, 0); gDPSetEnvColor(OVERLAY_DISP++, 0, 0, 0, 0);
} }
if (CVar_GetS32("gDrawLineupTick", 1)) { if (CVar_GetS32("gDrawLineupTick", 0)) {
Interface_DrawLineupTick(globalCtx); Interface_DrawLineupTick(globalCtx);
} }