1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-12-07 23:36:06 +00:00

Eliminate redundant [space][tab] pairs.

This commit is contained in:
Thomas Harte
2023-05-12 14:14:45 -04:00
parent 60bec3d4c0
commit 28c79b2885
54 changed files with 198 additions and 198 deletions

View File

@@ -78,9 +78,9 @@ class BitplaneShifter {
/// The value is arranges so that MSB = first pixel to output, LSB = last.
///
/// Each byte is swizzled to provide easier playfield separation, being in the form:
/// b6, b7 = 0;
/// b3b5: planes 1, 3 and 5;
/// b0b2: planes 0, 2 and 4.
/// b6, b7 = 0;
/// b3b5: planes 1, 3 and 5;
/// b0b2: planes 0, 2 and 4.
uint32_t get(bool high_res) {
if(high_res) {
return uint32_t(data_[1] >> 32);