Explorar el Código

Update rtext.c

pull/2419/head
Ray hace 3 años
padre
commit
9c2d337e99
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. +4
    -4
      src/rtext.c

+ 4
- 4
src/rtext.c Ver fichero

@ -992,11 +992,11 @@ bool ExportFontAsCode(Font font, const char *fileName)
// NOTE: Uses default font
void DrawFPS(int posX, int posY)
{
Color color = LIME; // good fps
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
if (p">(fps < 30) && p">(fps >= 15)) color = ORANGE; // Warning FPS
else if (fps < 15) color = RED; // Low FPS
DrawText(TextFormat("%2i FPS", GetFPS()), posX, posY, 20, color);
}
@ -1383,7 +1383,7 @@ const char *TextSubtext(const char *text, int position, int length)
// Replace text string
// REQUIRES: strlen(), strstr(), strncpy(), strcpy()
// WARNING: Returned buffer must be freed by the user (if return != NULL)
// WARNING: Allocated memory should be manually freed
char *TextReplace(char *text, const char *replace, const char *by)
{
// Sanity checks and initialization

Cargando…
Cancelar
Guardar