Add *.nfs extract support

This commit is contained in:
Jack Andersen 2019-11-24 17:50:08 -10:00
parent bcfcab1247
commit 9a96deed0a
2 changed files with 2 additions and 2 deletions

View File

@ -157,7 +157,7 @@ void CProjectSettingsDialog::BuildISO()
if (NeedsDiscMerge)
{
FilterString += ";*.wbfs";
FilterString += ";*.wbfs;*.nfs";
QString SourceIsoPath = UICommon::OpenFileDialog(this, "Select the original ISO", FilterString, DefaultPath);
if (SourceIsoPath.isEmpty())

View File

@ -458,7 +458,7 @@ void CWorldEditor::OpenRecentProject()
void CWorldEditor::ExportGame()
{
QString IsoPath = UICommon::OpenFileDialog(this, "Select ISO", "*.iso *.gcm *.tgc *.wbfs");
QString IsoPath = UICommon::OpenFileDialog(this, "Select ISO", "*.iso *.gcm *.tgc *.wbfs *.nfs");
if (IsoPath.isEmpty()) return;
QString ExportDir = UICommon::OpenDirDialog(this, "Select output export directory");