1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-02 20:30:00 +00:00

Experimentally decline immediate blits.

This commit is contained in:
Thomas Harte 2022-08-16 21:51:13 -04:00
parent 7289192130
commit 837acdcf60

View File

@ -240,12 +240,12 @@ bool Blitter<record_bus>::advance_dma() {
// TODO: eliminate @c complete_immediately and this workaround.
// See commentary in Chipset.cpp.
if constexpr (complete_immediately) {
while(get_status() & 0x4000) {
advance_dma<false>();
}
return true;
}
// if constexpr (complete_immediately) {
// while(get_status() & 0x4000) {
// advance_dma<false>();
// }
// return true;
// }
if(line_mode_) {
not_zero_flag_ = false;