diff --git a/Ryujinx/Ui/MainWindow.cs b/Ryujinx/Ui/MainWindow.cs index f41bc08757..e65e56ffd5 100644 --- a/Ryujinx/Ui/MainWindow.cs +++ b/Ryujinx/Ui/MainWindow.cs @@ -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); diff --git a/Ryujinx/Ui/Migration.cs b/Ryujinx/Ui/Migration.cs index c5418cf200..2f58f869b7 100644 --- a/Ryujinx/Ui/Migration.cs +++ b/Ryujinx/Ui/Migration.cs @@ -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(); }