1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Adds a commented-out printf that I might like to use again later.

This commit is contained in:
Thomas Harte 2017-09-05 21:15:56 -04:00
parent 7fd6699e0b
commit 8eeb7e73cd

View File

@ -46,6 +46,8 @@ void Bus::set_line_output_did_change(Line line) {
}
}
// printf("[Bus] %s is %s\n", StringForLine(line), new_line_level ? "high" : "low");
// post an update only if one occurred
if(new_line_level != line_levels_[line]) {
line_levels_[line] = new_line_level;