mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 15:45:42 +00:00
CDROM: Implement Sync/00h command
This commit is contained in:
parent
0b347e2151
commit
22a0d8f93c
|
@ -915,6 +915,15 @@ void CDROM::ExecuteCommand()
|
|||
}
|
||||
break;
|
||||
|
||||
case Command::Sync:
|
||||
{
|
||||
Log_DebugPrintf("CDROM sync command");
|
||||
|
||||
SendErrorResponse(STAT_ERROR, 0x40);
|
||||
EndCommand();
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
{
|
||||
Log_ErrorPrintf("Unknown CDROM command 0x%04X with %u parameters, please report", static_cast<u16>(m_command),
|
||||
|
|
Loading…
Reference in a new issue