aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client
diff options
context:
space:
mode:
authorLrxh <seabearvalorant@gmail.com>2026-03-06 18:14:44 +0100
committerGitHub <noreply@github.com>2026-03-06 11:14:44 -0600
commit185af94839e9a2f8d976591ce42bc9f68f71523d (patch)
tree8ee3377ad39da9b22c4ff24c03b08cc9366526e3 /Minecraft.Client
parent6cd6b21926049a625f1067b5c69c05c227c27f2c (diff)
fix gamma breaking f3 menu (#704)
Diffstat (limited to 'Minecraft.Client')
-rw-r--r--Minecraft.Client/GameRenderer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Minecraft.Client/GameRenderer.cpp b/Minecraft.Client/GameRenderer.cpp
index 390f114d..2030cfe5 100644
--- a/Minecraft.Client/GameRenderer.cpp
+++ b/Minecraft.Client/GameRenderer.cpp
@@ -1169,8 +1169,6 @@ void GameRenderer::render(float a, bool bFirst)
lastNsTime = System::nanoTime();
- ApplyGammaPostProcess();
-
if (!mc->options->hideGui || mc->screen != NULL)
{
mc->gui->render(a, mc->screen != NULL, xMouse, yMouse);
@@ -1196,6 +1194,7 @@ void GameRenderer::render(float a, bool bFirst)
if (mc->screen != NULL && mc->screen->particles != NULL) mc->screen->particles->render(a);
}
+ ApplyGammaPostProcess();
}
void GameRenderer::renderLevel(float a)