Skip to content

Commit

Permalink
fix: Use the char version of String.Split for compatibility with .NET…
Browse files Browse the repository at this point in the history
… Standard 2.0
  • Loading branch information
Jason-PEW committed Nov 21, 2023
1 parent 80e38d4 commit 2ff0ab3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ private void OnSteamGUI()
if (GUILayout.Button("Update from Steamworks.NET", GUILayout.MaxWidth(200)))
{
var steamworksVersion = Steamworks_Utility.GetSteamworksVersion();
var versionParts = steamworksVersion.Split(".");
var versionParts = steamworksVersion.Split('.');
bool success = false;
if (versionParts.Length >= 2)
{
Expand Down

0 comments on commit 2ff0ab3

Please sign in to comment.