You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Source/Managed/ENet.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1141,7 +1141,7 @@ public static uint Time
1141
1141
publicstaticboolInitialize()
1142
1142
{
1143
1143
if(Native.enet_linked_version()!=version)
1144
-
thrownewInvalidOperationException("ENet native is out of date. Download the latest release from https://github.com/SoftwareGuy/ENet-CSharp/releases");
1144
+
thrownewInvalidOperationException("ENet native library is out of date, please download the latest release from https://github.com/SoftwareGuy/ENet-CSharp/releases");
1145
1145
1146
1146
returnNative.enet_initialize()==0;
1147
1147
}
@@ -1152,7 +1152,7 @@ public static bool Initialize(Callbacks callbacks)
1152
1152
thrownewArgumentNullException("callbacks");
1153
1153
1154
1154
if(Native.enet_linked_version()!=version)
1155
-
thrownewInvalidOperationException("ENet native is out of date. Download the latest release from https://github.com/SoftwareGuy/ENet-CSharp/releases");
1155
+
thrownewInvalidOperationException("ENet native library is out of date, please download the latest release from https://github.com/SoftwareGuy/ENet-CSharp/releases");
0 commit comments