Skip to content

Commit

Permalink
Update OSCDefinesManager.cs
Browse files Browse the repository at this point in the history
Switching from char to string for compatibility
  • Loading branch information
timFinn authored Jul 12, 2022
1 parent 3b37fc2 commit 77059fc
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 77059fc

Please sign in to comment.