mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Qt: Add menu item to perform system update from disc
This commit is contained in:
@ -139,4 +139,10 @@ void PerformOnlineUpdate(const std::string& region, QWidget* parent)
|
||||
const WiiUtils::UpdateResult result = ShowProgress(parent, WiiUtils::DoOnlineUpdate, region);
|
||||
ShowResult(parent, result);
|
||||
}
|
||||
|
||||
void PerformDiscUpdate(const std::string& file_path, QWidget* parent)
|
||||
{
|
||||
const WiiUtils::UpdateResult result = ShowProgress(parent, WiiUtils::DoDiscUpdate, file_path);
|
||||
ShowResult(parent, result);
|
||||
}
|
||||
} // namespace WiiUpdate
|
||||
|
Reference in New Issue
Block a user