diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 7a74ce26e..b11692f59 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -1320,7 +1320,9 @@ void GMainWindow::UpdateSaveStates() { } void GMainWindow::OnGameListLoadFile(QString game_path) { - BootGame(game_path); + if (ConfirmChangeGame()) { + BootGame(game_path); + } } void GMainWindow::OnGameListOpenFolder(u64 data_id, GameListOpenTarget target) {