CDImage: Fix compilation on Linux

This commit is contained in:
Connor McLaughlin
2021-06-01 22:04:25 +10:00
parent 246797cf5c
commit 3cb01bf23d
3 changed files with 7 additions and 4 deletions

View File

@ -145,7 +145,7 @@ public:
struct
{
Control control;
u8 control_bits;
u8 track_number_bcd;
u8 index_number_bcd;
u8 relative_minute_bcd;
@ -162,6 +162,9 @@ public:
static u16 ComputeCRC(const Data& data);
Control GetControl() const { return Control{control_bits}; }
bool IsData() const { return GetControl().data; }
bool IsCRCValid() const;
SubChannelQ& operator=(const SubChannelQ& q)