Qt: Fix drag/drop of GS dumps/ELFs

This commit is contained in:
Connor McLaughlin 2022-06-29 19:31:19 +10:00 committed by refractionpcsx2
parent e7bb6c8767
commit ff0380b456
1 changed files with 1 additions and 1 deletions

View File

@ -1590,7 +1590,7 @@ void MainWindow::dropEvent(QDropEvent* event)
if (s_vm_valid)
doDiscChange(CDVD_SourceType::Iso, filename);
else
doStartFile(CDVD_SourceType::Iso, filename);
doStartFile(std::nullopt, filename);
}
}