CDROM: Don't panic on unknown register read

This commit is contained in:
Stenzek 2025-02-09 13:23:37 +10:00
parent 94b2060979
commit 901927d7fe
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -1114,7 +1114,7 @@ u8 CDROM::ReadRegister(u32 offset)
{
ERROR_LOG("Unknown CDROM register read: offset=0x{:02X}, index={}", offset,
ZeroExtend32(s_state.status.index.GetValue()));
Panic("Unknown CDROM register");
return 0;
}
}
}