1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Corrects initial event loop timing state.

This commit is contained in:
Thomas Harte 2017-09-10 20:51:21 -04:00
parent 8882aa496f
commit dc0b65f9c9

View File

@ -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_;
};