Skip to content

Commit

Permalink
Use string concat
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacyway committed Dec 18, 2024
1 parent 1a30745 commit 06a7d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fika.Core/UI/Patches/MenuTaskBar_Patch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public static void Postfix(Dictionary<EMenuType, AnimatedToggle> ____toggleButto
{
Singleton<GUISounds>.Instance.PlayUISound(EUISoundType.ButtonBottomBarClick);
string installDir = Environment.CurrentDirectory;
string fikaDir = Path.Combine(installDir, @"\user\fika");
string fikaDir = installDir + @"\user\fika";

if (!string.IsNullOrEmpty(installDir))
{
Expand Down

0 comments on commit 06a7d09

Please sign in to comment.