Pārlūkot izejas kodu

Change the color of the FPS display if the FPS is low (orange for <30, red for < 15). (#1676)

Co-authored-by: Jeffery Myers <JefMyers@blizzard.com>
pull/1678/head
Jeffery Myers pirms 4 gadiem
committed by GitHub
vecāks
revīzija
13f97471a2
Šim parakstam datu bāzē netika atrasta zināma atslēga GPG atslēgas ID: 4AEE18F83AFDEB23
1 mainītis faili ar 7 papildinājumiem un 1 dzēšanām
  1. +7
    -1
      src/text.c

+ 7
- 1
src/text.c Parādīt failu

@ -817,7 +817,13 @@ void UnloadFont(Font font)
// NOTE: Uses default font
void DrawFPS(int posX, int posY)
{
DrawText(TextFormat("%2i FPS", GetFPS()), posX, posY, 20, LIME);
Color color = LIME; // good fps
int fps = GetFPS();
if (fps < 30 && fps >= 15) color = ORANGE; // warning FPS
else if (fps < 15) color = RED; // bad FPS
DrawText(TextFormat("%2i FPS", GetFPS()), posX, posY, 20, color);
}
// Draw text (using default font)

Notiek ielāde…
Atcelt
Saglabāt