From 4f0014bfd38bd75367f5fb10bb7bbd14ad04eebd Mon Sep 17 00:00:00 2001 From: MegaMech Date: Thu, 20 Mar 2025 19:03:25 -0600 Subject: [PATCH] Don't enable hud if editor is enabled --- src/code_80057C60.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/code_80057C60.c b/src/code_80057C60.c index 2be481432..932550206 100644 --- a/src/code_80057C60.c +++ b/src/code_80057C60.c @@ -1659,7 +1659,9 @@ void func_8005A99C(void) { if (gPlayerCountSelection1 == 3) { D_801657E8 = true; } - gIsHUDVisible = (s32) 1; + if (CVarGetInteger("gEditorEnabled", 0) == false) { + gIsHUDVisible = (s32) 1; + } D_8018D170 = (s32) 1; D_8018D190 = (s32) 1; D_8018D204 = 0;