1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-23 03:29:04 +00:00

Double clock for all non-C16s.

This commit is contained in:
Thomas Harte 2025-01-06 22:04:57 -05:00
parent b37ed9ec60
commit 1c1e1eee47

View File

@ -65,7 +65,7 @@ private:
return version_ >= 2;
}
bool double_clock() const {
return platform_ == Platform::C16 && !half_waves();
return platform_ != Platform::C16 || !half_waves();
}
Pulse current_pulse_;