From ea15acbebc6a7560b66662fc118f6462b7d67fd0 Mon Sep 17 00:00:00 2001 From: Lacyway <20912169+Lacyway@users.noreply.github.com> Date: Tue, 17 Dec 2024 14:36:01 +0100 Subject: [PATCH] use Path.Combine --- Fika.Core/UI/Patches/MenuTaskBar_Patch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fika.Core/UI/Patches/MenuTaskBar_Patch.cs b/Fika.Core/UI/Patches/MenuTaskBar_Patch.cs index ffd57f5c..1d372660 100644 --- a/Fika.Core/UI/Patches/MenuTaskBar_Patch.cs +++ b/Fika.Core/UI/Patches/MenuTaskBar_Patch.cs @@ -72,7 +72,7 @@ public static void Postfix(Dictionary ____toggleButto { Singleton.Instance.PlayUISound(EUISoundType.ButtonBottomBarClick); string installDir = Environment.CurrentDirectory; - string fikaDir = installDir + @"\user\fika"; + string fikaDir = Path.Combine(installDir, @"\user\fika"); if (!string.IsNullOrEmpty(installDir)) {