1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Switch blink rates.

This commit is contained in:
Thomas Harte
2025-10-02 09:10:12 -04:00
parent 514993bc2e
commit 4377c79068
+2 -2
View File
@@ -560,8 +560,8 @@ private:
switch(layout_.cursor_flags.get()) {
case 0b00: cursor_mask_ = true; break;
case 0b01: cursor_mask_ = false; break;
case 0b10: cursor_mask_ = bus_state_.field_count.bit<4>(); break;
case 0b11: cursor_mask_= bus_state_.field_count.bit<3>(); break;
case 0b10: cursor_mask_ = bus_state_.field_count.bit<3>(); break;
case 0b11: cursor_mask_= bus_state_.field_count.bit<4>(); break;
default: break;
}
break;