1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-25 11:17:26 +00:00

Ensures proper manipulation of scan_statuses, leading to the correct result out of a CRTMachine.

Possibly with the exception of the TMS, as I appear to have uncovered an unrelated issue there.
This commit is contained in:
Thomas Harte
2020-01-21 22:28:25 -05:00
parent e7fff6e123
commit a71c5946f0
33 changed files with 95 additions and 57 deletions
+2 -2
View File
@@ -117,8 +117,8 @@ void TMS9918::set_scan_target(Outputs::Display::ScanTarget *scan_target) {
crt_.set_scan_target(scan_target);
}
Outputs::Display::ScanStatus TMS9918::get_scan_status() const {
return crt_.get_scan_status();
Outputs::Display::ScanStatus TMS9918::get_scaled_scan_status() const {
return crt_.get_scaled_scan_status();
}
void TMS9918::set_display_type(Outputs::Display::DisplayType display_type) {