diff options
| author | Ray <[email protected]> | 2023-09-05 20:04:21 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-09-05 20:04:21 +0200 |
| commit | 9cce5a93fffe6e297c004480b9b941d70bf4cd9e (patch) | |
| tree | 4b73143485e50eb12fc878692ccba4499ff918bd | |
| parent | c104a975904f23d011cb6072f98945b8d38eff17 (diff) | |
| download | raylib-9cce5a93fffe6e297c004480b9b941d70bf4cd9e.tar.gz raylib-9cce5a93fffe6e297c004480b9b941d70bf4cd9e.zip | |
Fix #3293
| -rw-r--r-- | src/rtext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rtext.c b/src/rtext.c index 5ca97d06..04d7a2a1 100644 --- a/src/rtext.c +++ b/src/rtext.c @@ -1075,7 +1075,7 @@ void DrawFPS(int posX, int posY) if ((fps < 30) && (fps >= 15)) color = ORANGE; // Warning FPS else if (fps < 15) color = RED; // Low FPS - DrawText(TextFormat("%2i FPS", GetFPS()), posX, posY, 20, color); + DrawText(TextFormat("%2i FPS", fps), posX, posY, 20, color); } // Draw text (using default font) |
