1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-07-16 15:24:09 +00:00

Experimentally switches to doubles for TimedEventLoop time tracking.

This commit is contained in:
Thomas Harte
2018-04-30 22:07:17 -04:00
parent b32538f3c8
commit dbd9282efc
2 changed files with 13 additions and 49 deletions

View File

@@ -102,7 +102,7 @@ namespace Storage {
private:
unsigned int input_clock_rate_ = 0;
int cycles_until_event_ = 0;
Time subcycles_until_event_;
double subcycles_until_event_ = 0.0;
};
}