Respond to feedback

This commit is contained in:
Alex Barney 2019-12-25 23:20:58 -07:00
parent fd3df0e6c3
commit 4042a5a43b
2 changed files with 4 additions and 2 deletions

View file

@ -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);

View file

@ -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();
}