Skip to content

Commit

Permalink
fix: fixed string.Join error
Browse files Browse the repository at this point in the history
Update OSCDefinesManager.cs
  • Loading branch information
Iam1337 authored Jul 13, 2022
2 parents 3b37fc2 + 77059fc commit 8581d2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/extOSC/Scripts/Editor/OSCDefinesManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static void SetDefine(string define, bool active)
}

// Store new defines.
PlayerSettings.SetScriptingDefineSymbolsForGroup(targetGroup, string.Join(';', defines));
PlayerSettings.SetScriptingDefineSymbolsForGroup(targetGroup, string.Join(";", defines));
}
}

Expand Down Expand Up @@ -86,4 +86,4 @@ private static bool CheckBuildTarget(BuildTargetGroup buildTarget)

#endregion
}
}
}

0 comments on commit 8581d2a

Please sign in to comment.