From 78fbbdd224328213c48ab7b03f9912e3a94d2065 Mon Sep 17 00:00:00 2001 From: StratiX0 Date: Wed, 10 Apr 2024 08:57:16 +0200 Subject: [PATCH] fix: 60fps --- enginecustom/applicationclass.cpp | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/enginecustom/applicationclass.cpp b/enginecustom/applicationclass.cpp index 2a06aea..66fd1f9 100644 --- a/enginecustom/applicationclass.cpp +++ b/enginecustom/applicationclass.cpp @@ -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; }