mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-21 17:16:44 +00:00
Eliminate common black border -> blank mapping.
Will move this inside the CRT.
This commit is contained in:
@@ -683,13 +683,7 @@ void Base<personality>::output_border(int cycles, [[maybe_unused]] const uint32_
|
||||
return;
|
||||
}
|
||||
|
||||
// If the border colour is 0, that can be communicated
|
||||
// more efficiently as an explicit blank.
|
||||
if(border_colour) {
|
||||
crt_.output_level<uint32_t>(cycles, border_colour);
|
||||
} else {
|
||||
crt_.output_blank(cycles);
|
||||
}
|
||||
crt_.output_level<uint32_t>(cycles, border_colour);
|
||||
}
|
||||
|
||||
// MARK: - External interface.
|
||||
|
||||
Reference in New Issue
Block a user