Fix stupid bug where the mac decoder was looking at the wrong bit for the side

data.
This commit is contained in:
David Given
2020-07-28 01:25:50 +02:00
parent 203a74713f
commit e86de4483a

View File

@@ -121,7 +121,7 @@ uint8_t decode_side(uint8_t side)
* bit 5) and also whether we're above track 0x3f (in bit 6).
*/
return !!(side & 0x40);
return !!(side & 0x20);
}
AbstractDecoder::RecordType MacintoshDecoder::advanceToNextRecord()