summaryrefslogtreecommitdiff
path: root/soh/src/code
diff options
context:
space:
mode:
authorGarrett Cox <garrettjcox@gmail.com>2022-11-03 11:55:40 -0500
committerGitHub <noreply@github.com>2022-11-03 12:55:40 -0400
commita4697c6fcb8706dbfaa6f4a8eaff3710b8b3a54d (patch)
tree402d86d2f1699fbdf03b0ff2c1e7809690282b76 /soh/src/code
parent75af33a04c357bf09e074231939af9138eb67a32 (diff)
Change lineup tick default to off (#1899)
Diffstat (limited to 'soh/src/code')
-rw-r--r--soh/src/code/z_parameter.c2
1 files changed, 1 insertions, 1 deletions
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);
}