From f03fb262bf48261a75c44449f28eaf34fbc064c2 Mon Sep 17 00:00:00 2001 From: Sally Knight Date: Mon, 16 Mar 2026 01:37:51 +0300 Subject: [PATCH] fix: always run postInit() Resolves the segfault when iggy is disabled --- Minecraft.Client/Platform/Linux/Linux_UIController.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Minecraft.Client/Platform/Linux/Linux_UIController.cpp b/Minecraft.Client/Platform/Linux/Linux_UIController.cpp index de6274756..4a39e85ef 100644 --- a/Minecraft.Client/Platform/Linux/Linux_UIController.cpp +++ b/Minecraft.Client/Platform/Linux/Linux_UIController.cpp @@ -57,9 +57,8 @@ void ConsoleUIController::init(S32 w, S32 h) { 32 * 1024 * 1024); IggySetGDraw(gdraw_funcs); - - postInit(); #endif + postInit(); } void ConsoleUIController::render() {