From 43b40c6f4a6dda5903553fc970a7bd6340c35870 Mon Sep 17 00:00:00 2001 From: Umut Alev Date: Mon, 4 Sep 2023 23:45:41 -0700 Subject: [PATCH] Fixes per code guidelines --- src/rtext.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rtext.c b/src/rtext.c index 318210489..02f29cef1 100644 --- a/src/rtext.c +++ b/src/rtext.c @@ -1072,9 +1072,9 @@ void DrawFPS(int posX, int posY) const int fps = GetFPS(); const Color color = - fps < 15 ? RED : // Low FPS - fps < 30 ? ORANGE : // Warning FPS - LIME; // Good FPS + (fps < 15)? RED : // Low FPS + (fps < 30)? ORANGE : // Warning FPS + LIME; // Good FPS DrawText(TextFormat("%2i FPS", fps), posX, posY, 20, color); }