From 3c99d08528ef40f08ba45a2d5022799a8496354f Mon Sep 17 00:00:00 2001 From: ElBread3 <92335081+ElBread3@users.noreply.github.com> Date: Tue, 15 Oct 2024 13:49:19 -0500 Subject: [PATCH] don't guarantee the overwrite game condition --- src/qt_gui/main_window.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/qt_gui/main_window.cpp b/src/qt_gui/main_window.cpp index f49515366..e52820102 100644 --- a/src/qt_gui/main_window.cpp +++ b/src/qt_gui/main_window.cpp @@ -682,9 +682,6 @@ void MainWindow::InstallDragDropPkg(std::filesystem::path file, int pkgNum, int auto game_update_path = use_game_update ? game_install_dir / (std::string(pkg.GetTitleID()) + "-UPDATE") : game_folder_path; - if (!std::filesystem::exists(game_update_path)) { - std::filesystem::create_directory(game_update_path); - } QString gameDirPath; Common::FS::PathToQString(gameDirPath, game_folder_path); QDir game_dir(gameDirPath);