Procházet zdrojové kódy

Corrected crashing bug!

When SetTargetFPS(0) app crashes horribly (division by zero)
pull/189/head
Ray před 8 roky
rodič
revize
87fc7254e7
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      src/core.c

+ 2
- 1
src/core.c Zobrazit soubor

@ -689,7 +689,8 @@ void EndTextureMode(void)
// Set target FPS for the game
void SetTargetFPS(int fps)
{
targetTime = 1.0/(double)fps;
if (fps < 1) targetTime = 0.0;
else targetTime = 1.0/(double)fps;
TraceLog(INFO, "Target time per frame: %02.03f milliseconds", (float)targetTime*1000);
}

Načítá se…
Zrušit
Uložit