mirror of https://github.com/PCSX2/pcsx2.git
VMManager: Re-add .mdf as a disc filename
Fixes them not being scannable.
This commit is contained in:
parent
0f0543d3f6
commit
7b10240297
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue