Silenced double->float conversion warning.

This commit is contained in:
grahamboree 2013-10-14 16:38:03 -04:00
parent 35db2af872
commit 683acbb11c

View File

@ -1297,7 +1297,7 @@ void NavMeshTesterTool::handleRender()
for (int i = 0; i < m_nrandPoints; i++)
{
const float* p = &m_randPoints[i*3];
dd.vertex(p[0],p[1]+0.1,p[2], duRGBA(220,32,16,192));
dd.vertex(p[0],p[1]+0.1f,p[2], duRGBA(220,32,16,192));
}
dd.end();