[Working In Progress] Suppress compiler warnings.

Suppress several warnings about unused variables.
This commit is contained in:
hujiajie
2016-07-10 14:22:32 +08:00
parent 81ae53e3a4
commit 8c573177eb
9 changed files with 6 additions and 22 deletions

View File

@@ -295,7 +295,7 @@ void RaytracerPhysicsSetup::stepSimulation(float deltaTime)
for (x=0;x<m_internalData->m_width;x++)
{
for (int y=0;y<m_internalData->m_height;y++)
for (y=0;y<m_internalData->m_height;y++)
{
btVector4 rgba(0,0,0,0);
btVector3 rayTo = rayToCenter - 0.5f * hor + 0.5f * vertical;