diff --git a/src/display/graphics.cpp b/src/display/graphics.cpp index a11b85d07..102d1c35f 100644 --- a/src/display/graphics.cpp +++ b/src/display/graphics.cpp @@ -1358,7 +1358,7 @@ DEF_ATTR_RD_SIMPLE(Graphics, FrameRate, int, p->frameRate) DEF_ATTR_SIMPLE(Graphics, FrameCount, int, p->frameCount) void Graphics::setFrameRate(int value) { - p->frameRate = clamp(value, 10, 120); + p->frameRate = std::max(value, 1); if (p->threadData->config.syncToRefreshrate) return;