CDImage: Add support for loading PBP images

This commit is contained in:
Albert Liu
2021-03-11 23:24:12 -08:00
parent a34f0d5599
commit 46ff2b553d
12 changed files with 882 additions and 6 deletions

View File

@ -50,6 +50,10 @@ std::unique_ptr<CDImage> CDImage::Open(const char* filename)
{
return OpenMdsImage(filename);
}
else if (CASE_COMPARE(extension, ".pbp") == 0)
{
return OpenPBPImage(filename);
}
#undef CASE_COMPARE