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

Sets default level to high.

This commit is contained in:
Thomas Harte 2019-10-21 20:18:33 -04:00
parent 83f5f0e2ad
commit 91223b9ec8

View File

@ -79,7 +79,7 @@ class Line {
std::vector<Event> events_;
int remaining_delays_ = 0;
int transmission_extra_ = 0;
bool level_ = false;
bool level_ = true;
int clock_rate_ = 0;
ReadDelegate *read_delegate_ = nullptr;