From 588d9b55cb5a6b636a0411f763259c6319a137aa Mon Sep 17 00:00:00 2001 From: Stephen Enders Date: Thu, 21 Jan 2021 21:37:36 -0500 Subject: Ensure timers initialize not started --- timedLatch.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'timedLatch.cpp') diff --git a/timedLatch.cpp b/timedLatch.cpp index 0629ac8..66714a5 100644 --- a/timedLatch.cpp +++ b/timedLatch.cpp @@ -6,6 +6,7 @@ TimedLatch::TimedLatch(sf::Time duration) { this->duration = duration; this->clock = sf::Clock(); + this->isStarted = false; }; void -- cgit v1.2.3-54-g00ecf