From 00502e94b594ba53855ffb529d4cb9870e56a4ee Mon Sep 17 00:00:00 2001 From: Eladash Date: Fri, 23 Jun 2023 19:02:39 +0300 Subject: [PATCH] Qt: Do not require to close games when adding new disc game directories --- rpcs3/rpcs3qt/main_window.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/rpcs3/rpcs3qt/main_window.cpp b/rpcs3/rpcs3qt/main_window.cpp index e02bd6161d..83830c1335 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -3364,14 +3364,8 @@ void main_window::dropEvent(QDropEvent* event) } case drop_type::drop_dir: // import valid games to gamelist (games.yaml) { - if (!m_gui_settings->GetBootConfirmation(this)) - { - return; - } - for (const auto& path : drop_paths) { - Emu.GracefulShutdown(false); AddGamesFromDir(path); }