From ce012ee3f4aea7a4670b6bef73ac47dcfcf7fea8 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 3 Jun 2017 17:26:25 +0200 Subject: [PATCH] FilesystemPanel: Remove strange disc type check I don't know what the point of this was. (Workaround for some old bug that we don't have anymore?) --- Source/Core/DolphinWX/ISOProperties/FilesystemPanel.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/DolphinWX/ISOProperties/FilesystemPanel.cpp b/Source/Core/DolphinWX/ISOProperties/FilesystemPanel.cpp index e591a54596..27f96cd3d1 100644 --- a/Source/Core/DolphinWX/ISOProperties/FilesystemPanel.cpp +++ b/Source/Core/DolphinWX/ISOProperties/FilesystemPanel.cpp @@ -461,8 +461,7 @@ void FilesystemPanel::ExtractDirectories(const std::string& full_path, size = static_cast(fst.size()); filesystem->ExportApploader(output_folder); - if (m_opened_iso->GetVolumeType() == DiscIO::Platform::GAMECUBE_DISC) - filesystem->ExportDOL(output_folder); + filesystem->ExportDOL(output_folder); } else {