From 95f3d8ca47e5a9242e8577f711e9d34d9c67c4ee Mon Sep 17 00:00:00 2001 From: Seth Date: Wed, 23 Oct 2024 16:37:59 -0700 Subject: [PATCH] Another trivial change to test receive hook --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index c45dc00..c125f76 100644 --- a/main.cpp +++ b/main.cpp @@ -181,7 +181,7 @@ void object_movement(){ } // grand_mutex.unlock(); for(gameobject* o : objects) - o->move(); // move needs a parameter which indicates how long since we last called move + o->move(); // move needs a parameter which indicates how long since we last called move (loop_time) auto end_time = std::chrono::system_clock::now(); int cpu_time = std::chrono::duration_cast(end_time - start_time).count(); last_call = start_time; -- 2.39.5