From 2ad615ce444c49dc84bb958677ccc51edfdd940b Mon Sep 17 00:00:00 2001 From: Noel Berry Date: Thu, 27 Aug 2020 20:24:36 -0700 Subject: [PATCH] note for non-fixed timestep --- public/blah/app.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/public/blah/app.cpp b/public/blah/app.cpp index f330308..8b5528c 100644 --- a/public/blah/app.cpp +++ b/public/blah/app.cpp @@ -94,6 +94,7 @@ bool App::run(const Config* c) Internal::Platform::frame(); // update at a fixed timerate + // TODO: allow a non-fixed step update? { uint64_t time_target = (uint64_t)((1.0f / app_config.target_framerate) * 1000); uint64_t time_curr = Internal::Platform::time();