1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-09 21:29:53 +00:00

Corrects reported ZX80/81 scan status.

This commit is contained in:
Thomas Harte 2020-01-25 23:27:09 -05:00
parent c398aa60c1
commit 03d23aad41

View File

@ -111,5 +111,5 @@ void Video::set_scan_target(Outputs::Display::ScanTarget *scan_target) {
}
Outputs::Display::ScanStatus Video::get_scaled_scan_status() const {
return crt_.get_scaled_scan_status() / 0.5f;
return crt_.get_scaled_scan_status() / 2.0f;
}