From a0e99e2f035db4c03a0a8da3ba38da20d191c152 Mon Sep 17 00:00:00 2001 From: Shredder Date: Thu, 7 May 2026 13:59:13 +0500 Subject: [PATCH] debug screen ifdef case because linux compilation is hell --- src/client/Minecraft.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/client/Minecraft.cpp b/src/client/Minecraft.cpp index c0c6f70a..33834e92 100755 --- a/src/client/Minecraft.cpp +++ b/src/client/Minecraft.cpp @@ -1453,15 +1453,21 @@ void Minecraft::_levelGenerated() } std::string Minecraft::gatherStats1() { +#ifndef STANDALONE_SERVER return levelRenderer->gatherStats1(); +#endif } std::string Minecraft::gatherStats2() { +#ifndef STANDALONE_SERVER return levelRenderer->gatherStats2(); +#endif } std::string Minecraft::gatherStats3() { +#ifndef STANDALONE_SERVER return ("P: " + particleEngine->countParticles() + ". T: " + (level->gatherStats())); +#endif } std::string Minecraft::gatherStats4() {