From f06a3f3080d6dc0f949718104ca47014b903a014 Mon Sep 17 00:00:00 2001 From: Seth Date: Wed, 23 Oct 2024 16:34:18 -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 f0c1e90..c45dc00 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 paramter which indicates how long since we last called move + o->move(); // move needs a parameter which indicates how long since we last called move 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