mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-18 16:30:29 +00:00
Merge branch 'AppleIIgs' of github.com:TomHarte/CLK into AppleIIgs
This commit is contained in:
commit
2ac6f96806
@ -627,7 +627,7 @@ uint16_t *VideoBase::output_high_resolution(uint16_t *target, int start, int end
|
|||||||
const uint16_t row_address = get_row_address(row);
|
const uint16_t row_address = get_row_address(row);
|
||||||
for(int c = start; c < end; c++) {
|
for(int c = start; c < end; c++) {
|
||||||
uint8_t source = ram_[row_address + c];
|
uint8_t source = ram_[row_address + c];
|
||||||
const uint32_t doubled_source = uint32_t(double_bytes[source]);
|
const uint32_t doubled_source = uint32_t(double_bytes[source & 0x7f]);
|
||||||
|
|
||||||
// Just append new bits, doubled up (and possibly delayed).
|
// Just append new bits, doubled up (and possibly delayed).
|
||||||
// TODO: I can kill the conditional here. Probably?
|
// TODO: I can kill the conditional here. Probably?
|
||||||
|
Loading…
x
Reference in New Issue
Block a user