From e44850fed42489f96aaa53b4a56020b8d7f9f736 Mon Sep 17 00:00:00 2001 From: mageven <62494521+mageven@users.noreply.github.com> Date: Tue, 16 Mar 2021 02:40:36 +0530 Subject: Implement friendlier portable mode (#1885) * Implement friendlier portable mode * Remove first run dialog * Disable updates in portable mode for now * Convert relative custom paths to absolute ones Also, fix a regression when custom path doesn't exist --- Ryujinx.HLE/FileSystem/VirtualFileSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Ryujinx.HLE/FileSystem/VirtualFileSystem.cs') diff --git a/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs b/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs index 4ba5df00..ff3232c2 100644 --- a/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs +++ b/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs @@ -227,9 +227,9 @@ namespace Ryujinx.HLE.FileSystem string titleKeyFile = null; string consoleKeyFile = null; - if (!AppDataManager.IsCustomBasePath) + if (AppDataManager.Mode == AppDataManager.LaunchMode.UserProfile) { - LoadSetAtPath(AppDataManager.KeysDirPathAlt); + LoadSetAtPath(AppDataManager.KeysDirPathUser); } LoadSetAtPath(AppDataManager.KeysDirPath); -- cgit v1.2.3-70-g09d2