mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Qt: Give better error messages when Wii save importing fails.
This commit is contained in:
@ -452,8 +452,11 @@ void GameList::ExportWiiSave()
|
||||
QList<std::string> failed;
|
||||
for (const auto& game : GetSelectedGames())
|
||||
{
|
||||
if (!WiiSave::Export(game->GetTitleID(), export_dir.toStdString()))
|
||||
if (WiiSave::Export(game->GetTitleID(), export_dir.toStdString()) !=
|
||||
WiiSave::CopyResult::Success)
|
||||
{
|
||||
failed.push_back(game->GetName(UICommon::GameFile::Variant::LongAndPossiblyCustom));
|
||||
}
|
||||
}
|
||||
|
||||
if (!failed.isEmpty())
|
||||
|
Reference in New Issue
Block a user