1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-20 10:17:05 +00:00

Corrects Macintosh aspect ratio (and framing).

This commit is contained in:
Thomas Harte
2019-06-13 18:41:38 -04:00
parent 39aae34323
commit f6f9024631
10 changed files with 28 additions and 7 deletions
+1 -1
View File
@@ -140,7 +140,7 @@ uint8_t IWM::read(int address) {
//
case CA2|CA1: // Single- or double-sided drive.
LOG("single- or double-sided drive)");
sense = drives_[active_drive_] && (drives_[active_drive_]->get_head_count() == 1) ? 0x00 : 0x80;
sense = drives_[active_drive_] && (drives_[active_drive_]->get_head_count() == 1) ? 0x80 : 0x00;
break;
case CA2|CA1|CA0: // Drive installed. (per the Mac Plus ROM)