From dc0b65f9c96bc714f0b66c697bfcc148bef97fff Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 10 Sep 2017 20:51:21 -0400 Subject: [PATCH] Corrects initial event loop timing state. --- Storage/TimedEventLoop.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Storage/TimedEventLoop.hpp b/Storage/TimedEventLoop.hpp index e383e9683..8f6549916 100644 --- a/Storage/TimedEventLoop.hpp +++ b/Storage/TimedEventLoop.hpp @@ -100,8 +100,8 @@ namespace Storage { Time get_time_into_next_event(); private: - unsigned int input_clock_rate_; - int cycles_until_event_; + unsigned int input_clock_rate_ = 0; + int cycles_until_event_ = 0; Time subcycles_until_event_; };