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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user