From 06a7d0940aa2231a3c064dda60c37eb589175d38 Mon Sep 17 00:00:00 2001 From: Lacyway <20912169+Lacyway@users.noreply.github.com> Date: Wed, 18 Dec 2024 19:35:22 +0100 Subject: [PATCH] Use string concat --- 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 ffeda5dc..1d6c0226 100644 --- a/Fika.Core/UI/Patches/MenuTaskBar_Patch.cs +++ b/Fika.Core/UI/Patches/MenuTaskBar_Patch.cs @@ -74,7 +74,7 @@ public static void Postfix(Dictionary ____toggleButto { Singleton.Instance.PlayUISound(EUISoundType.ButtonBottomBarClick); string installDir = Environment.CurrentDirectory; - string fikaDir = Path.Combine(installDir, @"\user\fika"); + string fikaDir = installDir + @"\user\fika"; if (!string.IsNullOrEmpty(installDir)) {