1
0

Fixed some Visual Studio warnings

This commit is contained in:
Tiger Wang
2015-05-08 23:32:02 +01:00
parent 9329c2c2cb
commit 218010cd96
8 changed files with 38 additions and 25 deletions

View File

@@ -56,13 +56,13 @@ int cTracer::SigNum(float a_Num)
{
if (a_Num < 0.f)
{
return -1.f;
return -1;
}
if (a_Num > 0.f)
{
return 1.f;
return 1;
}
return 0.f;
return 0;
}