From 525bbf48d7901d470ab2734f12f6fc021529863e Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 13 Nov 2019 16:28:43 +1000 Subject: [PATCH] CDImage: Set data bit in Q subchannel for bin images --- src/common/cd_image_bin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/cd_image_bin.cpp b/src/common/cd_image_bin.cpp index b3363e780..b5dbd3f37 100644 --- a/src/common/cd_image_bin.cpp +++ b/src/common/cd_image_bin.cpp @@ -43,6 +43,7 @@ bool CDImageBin::Open(const char* filename) SubChannelQ::Control control = {}; TrackMode mode = TrackMode::Mode2Raw; + control.data = mode != TrackMode::Audio; // Two seconds default pregap. const u32 pregap_frames = 2 * FRAMES_PER_SECOND;