From acda92e49d6a5edc4e63b8688f34a710de4a38cf Mon Sep 17 00:00:00 2001 From: Benjamin Kraft Date: Wed, 13 Sep 2023 21:33:07 +0200 Subject: [PATCH] remove std::cout --- src/Simulation.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Simulation.cpp b/src/Simulation.cpp index 48ae116..608190d 100644 --- a/src/Simulation.cpp +++ b/src/Simulation.cpp @@ -16,7 +16,6 @@ Simulation::Simulation() { void Simulation::update() { auto thisUpdate = system_clock::now(); auto ms = (int)duration_cast(thisUpdate - lastUpdate).count(); - std::cout << ms << std::endl; lastUpdate = thisUpdate; if (!isPlaying)