From 2d6ca912fe7745a2f5a26cb9a0f1f5c13590afda Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sat, 18 Apr 2026 15:18:20 +0200 Subject: [PATCH] Qt: fix regular boot without database config --- rpcs3/rpcs3qt/main_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/main_window.cpp b/rpcs3/rpcs3qt/main_window.cpp index 0bf6a060e1..da66bd4f38 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -557,7 +557,7 @@ void main_window::Boot(const std::string& path, const std::string& title_id, boo // Get database config if possible or if we are in database_config mode (to ensure we see an error on invalid use) if (config_database* db = m_game_list_frame->GetConfigDatabase(); - db->has_config(title_id) || config_mode == cfg_mode::database_config) + db->has_config(title_id)) { const std::optional config = db->get_config(title_id);