CDROM: Implement get version and getstat commands
This commit is contained in:
@ -88,7 +88,7 @@ struct BitField
|
||||
|
||||
BitField& operator|=(DataType rhs)
|
||||
{
|
||||
SetValue(GetValue() & rhs);
|
||||
SetValue(GetValue() | rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
@ -20,7 +20,7 @@ public:
|
||||
T* GetFrontPointer() { return m_ptr[m_head]; }
|
||||
constexpr u32 GetCapacity() const { return CAPACITY; }
|
||||
u32 GetSize() const { return m_size; }
|
||||
bool IsEmpty() const { return m_size > 0; }
|
||||
bool IsEmpty() const { return m_size == 0; }
|
||||
bool IsFull() const { return m_size == CAPACITY; }
|
||||
|
||||
void Clear()
|
||||
|
||||
Reference in New Issue
Block a user