CDImage: Add support for loading mds/mdf images

This commit is contained in:
Connor McLaughlin
2021-03-07 16:26:12 +10:00
parent 320394fbd1
commit 753dd0480f
9 changed files with 285 additions and 8 deletions

View File

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