Merge pull request #232 from MatthewBeshay/fix/linux-iggy-intro-black-screen
Some checks are pending
Build (Linux, x86_64) / build-linux (push) Waiting to run
Build (Linux, x86_64) / build-linux-debug (push) Waiting to run
Clang Format / clang-format (push) Waiting to run

Fix/linux iggy intro black screen
This commit is contained in:
Tropical 2026-03-14 09:32:47 -05:00 committed by GitHub
commit 00c78bccbb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 5 deletions

View file

@ -2039,10 +2039,6 @@ void Minecraft::run_middle() {
}
*/
if (options->renderDebug)
{
//renderFpsMeter(tickDuraction);
/* 4J - removed
if (!Display::isActive())
{

View file

@ -41,6 +41,9 @@ void ConsoleUIController::render() {
if (!gdraw_funcs) return;
gdraw_GL_SetTileOrigin(0, 0, 0);
if (!app.GetGameStarted() && gdraw_funcs->ClearID) {
gdraw_funcs->ClearID();
}
// render
renderScenes();
@ -109,4 +112,4 @@ void ConsoleUIController::shutdown() {
gdraw_funcs = nullptr;
}
#endif
}
}