fea: remove fps limit

This commit is contained in:
daoge_cmd
2026-03-01 19:32:00 +08:00
parent bdef1f9412
commit e067d710e3

View File

@@ -116,7 +116,7 @@ void Options::init()
bobView = true; bobView = true;
anaglyph3d = false; anaglyph3d = false;
advancedOpengl = false; advancedOpengl = false;
framerateLimit = 2; framerateLimit = 0;
fancyGraphics = true; fancyGraphics = true;
ambientOcclusion = true; ambientOcclusion = true;
renderClouds = true; renderClouds = true;
@@ -522,4 +522,4 @@ void Options::save()
bool Options::isCloudsOn() bool Options::isCloudsOn()
{ {
return viewDistance < 2 && renderClouds; return viewDistance < 2 && renderClouds;
} }