CDROM: Implement get version and getstat commands

This commit is contained in:
Connor McLaughlin
2019-09-17 22:18:58 +10:00
parent b951f27381
commit e3c6035152
8 changed files with 159 additions and 12 deletions

View File

@ -88,7 +88,7 @@ struct BitField
BitField& operator|=(DataType rhs)
{
SetValue(GetValue() & rhs);
SetValue(GetValue() | rhs);
return *this;
}