Fix a divide-by-zero crash in the 3ds Max plugins on really fast PCs
This commit is contained in:
parent
6997cd6dcc
commit
02dc3c1cfe
1 changed files with 2 additions and 1 deletions
|
@ -1271,7 +1271,8 @@ void CObjectViewer::go ()
|
|||
// Calc FPS
|
||||
static sint64 lastTime=NLMISC::CTime::getPerformanceTime ();
|
||||
sint64 newTime=NLMISC::CTime::getPerformanceTime ();
|
||||
float fps = (float)(1.0 / NLMISC::CTime::ticksToSecond (newTime-lastTime));
|
||||
sint64 timeDiff = newTime - lastTime;
|
||||
float fps = timeDiff > 0 ? (float)(1.0 / NLMISC::CTime::ticksToSecond (newTime-lastTime)) : 1000.0f;
|
||||
lastTime=newTime;
|
||||
char msgBar[1024];
|
||||
uint nbPlayingSources, nbSources;
|
||||
|
|
Loading…
Reference in a new issue