diff options
| author | qwasdrizzel <145519042+qwasdrizzel@users.noreply.github.com> | 2026-03-16 21:54:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-16 21:54:29 -0500 |
| commit | d3599577279e215893abe4aa717576152c43c096 (patch) | |
| tree | a1f5d6b3af3d6578a2734ca413ad2f121ca8abdc /Minecraft.Client | |
| parent | ce739f6045ec72127491286ea3f3f21e537c1b55 (diff) | |
fix
Diffstat (limited to 'Minecraft.Client')
| -rw-r--r-- | Minecraft.Client/GameRenderer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.Client/GameRenderer.cpp b/Minecraft.Client/GameRenderer.cpp index fe8171c1..4e808207 100644 --- a/Minecraft.Client/GameRenderer.cpp +++ b/Minecraft.Client/GameRenderer.cpp @@ -390,7 +390,7 @@ float GameRenderer::getFov(float a, bool applyEffects) shared_ptr<LocalPlayer> player = dynamic_pointer_cast<LocalPlayer>(mc->cameraTargetPlayer); int playerIdx = player ? player->GetXboxPad() : 0; float fov = m_fov;//70; - if (fov < 1) fov = 0.01; // Crash fix + if (fov < 1) fov = 1; // Crash fix if (applyEffects) { |
