VMManager: Re-add .mdf as a disc filename

Fixes them not being scannable.
This commit is contained in:
Connor McLaughlin 2022-09-16 18:40:43 +10:00 committed by refractionpcsx2
parent 0f0543d3f6
commit 7b10240297
1 changed files with 1 additions and 1 deletions

View File

@ -1375,7 +1375,7 @@ bool VMManager::IsSaveStateFileName(const std::string_view& path)
bool VMManager::IsDiscFileName(const std::string_view& path)
{
static const char* extensions[] = {".iso", ".bin", ".img", ".gz", ".cso", ".chd"};
static const char* extensions[] = {".iso", ".bin", ".img", ".mdf", ".gz", ".cso", ".chd"};
for (const char* test_extension : extensions)
{