From 0ed349a0c3956e31c862adace1ba6ee23b872d65 Mon Sep 17 00:00:00 2001 From: Candygoblen123 Date: Sun, 29 Jan 2023 22:38:44 -0500 Subject: [PATCH] Remove extra whitespace --- Ryujinx.Common/Configuration/AppDataManager.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Ryujinx.Common/Configuration/AppDataManager.cs b/Ryujinx.Common/Configuration/AppDataManager.cs index e64e134eb..c2ba9985f 100644 --- a/Ryujinx.Common/Configuration/AppDataManager.cs +++ b/Ryujinx.Common/Configuration/AppDataManager.cs @@ -89,7 +89,7 @@ namespace Ryujinx.Common.Configuration BaseDirPath = Path.GetFullPath(BaseDirPath); // convert relative paths - // NOTE: Copies the Ryujinx folder in `~/.config` to `~/Library/Application Support` if one is found + // NOTE: Moves the Ryujinx folder in `~/.config` to `~/Library/Application Support` if one is found // and a Ryujinx folder does not already exist in Application Support. // Also creates a symlink from `~/.config/Ryujinx` to `~/Library/Application Support/Ryujinx` to preserve backwards compatibility. // This should be removed in the future. @@ -102,7 +102,6 @@ namespace Ryujinx.Common.Configuration Directory.Delete(oldConfigPath, true); Directory.CreateSymbolicLink(oldConfigPath, BaseDirPath); } - } SetupBasePaths();