Respond to feedback
This commit is contained in:
parent
fd3df0e6c3
commit
4042a5a43b
2 changed files with 4 additions and 2 deletions
|
@ -70,7 +70,7 @@ namespace Ryujinx.Ui
|
|||
DeleteEvent += Window_Close;
|
||||
|
||||
ApplicationLibrary.ApplicationAdded += Application_Added;
|
||||
|
||||
|
||||
_gameTable.ButtonReleaseEvent += Row_Clicked;
|
||||
|
||||
bool continueWithStartup = Migration.PromptIfMigrationNeededForStartup(this, out bool migrationNeeded);
|
||||
|
|
|
@ -23,6 +23,7 @@ namespace Ryujinx.Ui
|
|||
if (!IsMigrationNeeded())
|
||||
{
|
||||
isMigrationNeeded = false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -85,7 +86,8 @@ namespace Ryujinx.Ui
|
|||
|
||||
CopyRyuFs(oldBasePath, newBasePath);
|
||||
|
||||
var importer = new SaveImporter(oldSaveDir, Device.System.FsClient);
|
||||
SaveImporter importer = new SaveImporter(oldSaveDir, Device.System.FsClient);
|
||||
|
||||
return importer.Import();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue