diff --git a/Source/Core/DolphinQt/GameList/GameList.cpp b/Source/Core/DolphinQt/GameList/GameList.cpp index 107addf802..c918c4555d 100644 --- a/Source/Core/DolphinQt/GameList/GameList.cpp +++ b/Source/Core/DolphinQt/GameList/GameList.cpp @@ -694,7 +694,14 @@ void GameList::OpenWiiSaveFolder() if (!game) return; - QUrl url = QUrl::fromLocalFile(QString::fromStdString(game->GetWiiFSPath())); + const std::string path = game->GetWiiFSPath(); + if (!File::Exists(path)) + { + ModalMessageBox::information(this, tr("Information"), tr("No save data found.")); + return; + } + + const QUrl url = QUrl::fromLocalFile(QString::fromStdString(path)); QDesktopServices::openUrl(url); }