diff --git a/Minecraft.Client/Gui.cpp b/Minecraft.Client/Gui.cpp index f0d44319a..bc3888f54 100644 --- a/Minecraft.Client/Gui.cpp +++ b/Minecraft.Client/Gui.cpp @@ -1064,14 +1064,10 @@ void Gui::render(float a, bool mouseFree, int xMouse, int yMouse) vector lines; - // Only show version/branch for player 0 to avoid cluttering each splitscreen viewport - if (iPad == 0) + if (minecraft->options->renderDebug && minecraft->player != nullptr && minecraft->level != nullptr) { lines.push_back(ClientConstants::VERSION_STRING); lines.push_back(ClientConstants::BRANCH_STRING); - } - if (minecraft->options->renderDebug && minecraft->player != nullptr && minecraft->level != nullptr) - { lines.push_back(minecraft->fpsString); lines.push_back(L"E: " + std::to_wstring(minecraft->level->getAllEntities().size())); int renderDistance = app.GetGameSettings(iPad, eGameSetting_RenderDistance);