fix: 60fps

This commit is contained in:
StratiX0 2024-04-10 08:57:16 +02:00
parent 0bf3cd1121
commit 78fbbdd224

View File

@ -652,12 +652,16 @@ bool ApplicationClass::Frame(InputClass* Input)
textureTranslation -= 1.0f;
}
// Render the graphics scene.
result = Render(rotation, x, y, z, textureTranslation);
if (!result)
{
return false;
}
/////////////////////////////
// C en commentaire pcl kc //
/////////////////////////////
//// Render the graphics scene.
//result = Render(rotation, x, y, z, textureTranslation);
//if (!result)
//{
// return false;
//}
return true;
}