From 65b568003d4097e9b7175d21a0ea1abcf410b48f Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 18 Sep 2016 10:29:45 -0400 Subject: [PATCH] Clarified TODO. --- Storage/TimedEventLoop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Storage/TimedEventLoop.cpp b/Storage/TimedEventLoop.cpp index 8aa3bc3a6..d420fd082 100644 --- a/Storage/TimedEventLoop.cpp +++ b/Storage/TimedEventLoop.cpp @@ -68,7 +68,7 @@ void TimedEventLoop::set_next_event_time_interval(Time interval) Time TimedEventLoop::get_time_into_next_event() { - // TODO: calculate, presumably as [length of interval] - [cycles left] - [subcycles] + // TODO: calculate, presumably as [length of interval] - ([cycles left] + [subcycles left]) Time zero; return zero; }