1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-11 08:30:55 +00:00

Merge pull request #1159 from TomHarte/PixelOrder

Flip order of byte usage in double high res mono.
This commit is contained in:
Thomas Harte 2023-08-21 22:21:18 -04:00 committed by GitHub
commit 525e5ce8b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -629,21 +629,21 @@ uint16_t *Video::output_double_high_resolution_mono(uint16_t *target, int start,
ram_[row_address + c],
};
target[0] = colours[(source[1] >> 0) & 0x1];
target[1] = colours[(source[1] >> 1) & 0x1];
target[2] = colours[(source[1] >> 2) & 0x1];
target[3] = colours[(source[1] >> 3) & 0x1];
target[4] = colours[(source[1] >> 4) & 0x1];
target[5] = colours[(source[1] >> 5) & 0x1];
target[6] = colours[(source[1] >> 6) & 0x1];
target[0] = colours[(source[0] >> 0) & 0x1];
target[1] = colours[(source[0] >> 1) & 0x1];
target[2] = colours[(source[0] >> 2) & 0x1];
target[3] = colours[(source[0] >> 3) & 0x1];
target[4] = colours[(source[0] >> 4) & 0x1];
target[5] = colours[(source[0] >> 5) & 0x1];
target[6] = colours[(source[0] >> 6) & 0x1];
target[7] = colours[(source[0] >> 0) & 0x1];
target[8] = colours[(source[0] >> 1) & 0x1];
target[9] = colours[(source[0] >> 2) & 0x1];
target[10] = colours[(source[0] >> 3) & 0x1];
target[11] = colours[(source[0] >> 4) & 0x1];
target[12] = colours[(source[0] >> 5) & 0x1];
target[13] = colours[(source[0] >> 6) & 0x1];
target[7] = colours[(source[1] >> 0) & 0x1];
target[8] = colours[(source[1] >> 1) & 0x1];
target[9] = colours[(source[1] >> 2) & 0x1];
target[10] = colours[(source[1] >> 3) & 0x1];
target[11] = colours[(source[1] >> 4) & 0x1];
target[12] = colours[(source[1] >> 5) & 0x1];
target[13] = colours[(source[1] >> 6) & 0x1];
target += 14;
}