mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 22:05:38 +00:00
pbp: pstitleimg sections are allowed also for single disc games
Multidisc games are stored inside the EBOOT.PBP file as A) pstitleimg psisoimg psisoimg ... Single disk games can be stored in two different formats, with or without a pstitleimg section, i.e. as B) pstitleimg psisoimg or C) psisoimg Fix a conditional in duckstation that incorrectly flags B) as an error. These types of EBOOT.PBP files can be created by the pop-fe utility. Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
This commit is contained in:
parent
8c6ced6758
commit
f7a3358b1f
|
@ -423,7 +423,7 @@ bool CDImagePBP::Open(const char* filename, Common::Error* error)
|
|||
break;
|
||||
}
|
||||
|
||||
if (m_disc_offsets.size() < 2)
|
||||
if (m_disc_offsets.size() < 1)
|
||||
{
|
||||
Log_ErrorPrintf("Invalid number of discs (%u) in multi-disc PBP file", static_cast<u32>(m_disc_offsets.size()));
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue