From 8f8605ab2f54b83fb01045d4b3ad5eaa9a8ca30a Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 1 Jul 2021 20:36:16 +0200 Subject: [PATCH] Mount bdvd_dir regardless of patch category --- rpcs3/Emu/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index d589db3410..48d1c6ff0c 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -880,7 +880,7 @@ game_boot_result Emulator::Load(const std::string& title_id, bool add_only, bool } // Booting patch data - if (m_cat == "GD" && bdvd_dir.empty() && disc.empty()) + if ((is_disc_patch || m_cat == "GD") && bdvd_dir.empty() && disc.empty()) { // Load /dev_bdvd/ from game list if available if (auto node = games[m_title_id])