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;
|
DeleteEvent += Window_Close;
|
||||||
|
|
||||||
ApplicationLibrary.ApplicationAdded += Application_Added;
|
ApplicationLibrary.ApplicationAdded += Application_Added;
|
||||||
|
|
||||||
_gameTable.ButtonReleaseEvent += Row_Clicked;
|
_gameTable.ButtonReleaseEvent += Row_Clicked;
|
||||||
|
|
||||||
bool continueWithStartup = Migration.PromptIfMigrationNeededForStartup(this, out bool migrationNeeded);
|
bool continueWithStartup = Migration.PromptIfMigrationNeededForStartup(this, out bool migrationNeeded);
|
||||||
|
|
|
@ -23,6 +23,7 @@ namespace Ryujinx.Ui
|
||||||
if (!IsMigrationNeeded())
|
if (!IsMigrationNeeded())
|
||||||
{
|
{
|
||||||
isMigrationNeeded = false;
|
isMigrationNeeded = false;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,7 +86,8 @@ namespace Ryujinx.Ui
|
||||||
|
|
||||||
CopyRyuFs(oldBasePath, newBasePath);
|
CopyRyuFs(oldBasePath, newBasePath);
|
||||||
|
|
||||||
var importer = new SaveImporter(oldSaveDir, Device.System.FsClient);
|
SaveImporter importer = new SaveImporter(oldSaveDir, Device.System.FsClient);
|
||||||
|
|
||||||
return importer.Import();
|
return importer.Import();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue