mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 23:55:40 +00:00
CDImageMemory: Fix SBI loading
This commit is contained in:
parent
659e6a2e60
commit
5f3d475f4c
|
@ -110,20 +110,7 @@ bool CDImageMemory::CopyImage(CDImage* image, ProgressCallback* progress)
|
|||
m_filename = image->GetFileName();
|
||||
m_lba_count = image->GetLBACount();
|
||||
|
||||
if (!image->Seek(0))
|
||||
{
|
||||
progress->ModalError("Failed to seek to start of image for subq read");
|
||||
return false;
|
||||
}
|
||||
|
||||
progress->SetStatusText("Looking for invalid subchannel data...");
|
||||
|
||||
CDImage::SubChannelQ subq;
|
||||
for (LBA lba = 0; lba < m_lba_count; lba++)
|
||||
{
|
||||
if (ReadSubChannelQ(&subq) && !subq.IsCRCValid())
|
||||
m_sbi.AddReplacementSubChannelQ(lba, subq);
|
||||
}
|
||||
m_sbi.LoadSBI(FileSystem::ReplaceExtension(m_filename, "sbi").c_str());
|
||||
|
||||
return Seek(1, Position{0, 0, 0});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue