mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
CDROM: Improve CDDA report logging
This commit is contained in:
parent
1bc596ee26
commit
0a50ca3f18
|
@ -2311,10 +2311,6 @@ void CDROM::ProcessCDDASector(const u8* raw_sector, const CDImage::SubChannelQ&
|
||||||
{
|
{
|
||||||
m_last_cdda_report_frame_nibble = frame_nibble;
|
m_last_cdda_report_frame_nibble = frame_nibble;
|
||||||
|
|
||||||
Log_DebugPrintf("CDDA report at track[%02x] index[%02x] rel[%02x:%02x:%02x]", subq.track_number_bcd,
|
|
||||||
subq.index_number_bcd, subq.relative_minute_bcd, subq.relative_second_bcd,
|
|
||||||
subq.relative_frame_bcd);
|
|
||||||
|
|
||||||
ClearAsyncInterrupt();
|
ClearAsyncInterrupt();
|
||||||
m_async_response_fifo.Push(m_secondary_status.bits);
|
m_async_response_fifo.Push(m_secondary_status.bits);
|
||||||
m_async_response_fifo.Push(subq.track_number_bcd);
|
m_async_response_fifo.Push(subq.track_number_bcd);
|
||||||
|
@ -2339,6 +2335,11 @@ void CDROM::ProcessCDDASector(const u8* raw_sector, const CDImage::SubChannelQ&
|
||||||
m_async_response_fifo.Push(Truncate8(peak_value)); // peak low
|
m_async_response_fifo.Push(Truncate8(peak_value)); // peak low
|
||||||
m_async_response_fifo.Push(Truncate8(peak_value >> 8)); // peak high
|
m_async_response_fifo.Push(Truncate8(peak_value >> 8)); // peak high
|
||||||
SetAsyncInterrupt(Interrupt::DataReady);
|
SetAsyncInterrupt(Interrupt::DataReady);
|
||||||
|
|
||||||
|
Log_DevPrintf("CDDA report at track[%02x] index[%02x] rel[%02x:%02x:%02x] abs[%02x:%02x:%02x] peak[%u:%d]",
|
||||||
|
subq.track_number_bcd, subq.index_number_bcd, subq.relative_minute_bcd, subq.relative_second_bcd,
|
||||||
|
subq.relative_frame_bcd, subq.absolute_minute_bcd, subq.absolute_second_bcd,
|
||||||
|
subq.absolute_frame_bcd, channel, peak_volume);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue