mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Fix stupid bug where the mac decoder was looking at the wrong bit for the side
data.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user