fixed a minor warning in the profiler

master
jp9000 2013-05-27 15:41:39 -07:00
parent 467de0565e
commit 7e933ca8b6
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ struct BASE_EXPORT ProfileNodeInfo
float fTimeTaken = (float)MicroToMS(avgTimeElapsed);
float cpuTime = (float)MicroToMS(avgCpuTime);
float totalCpuTime = (float)cpuTimeElapsed*0.001;
float totalCpuTime = (float)cpuTimeElapsed*0.001f;
if(avgPercentage >= minPercentage && fTimeTaken >= minTime)
{