Skip to content

Commit 692b27f

Browse files
committed
Be a little friendlier
1 parent c3b70f5 commit 692b27f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Managed/ENet.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,7 +1141,7 @@ public static uint Time
11411141
public static bool Initialize()
11421142
{
11431143
if (Native.enet_linked_version() != version)
1144-
throw new InvalidOperationException("ENet native is out of date. Download the latest release from https://github.com/SoftwareGuy/ENet-CSharp/releases");
1144+
throw new InvalidOperationException("ENet native library is out of date, please download the latest release from https://github.com/SoftwareGuy/ENet-CSharp/releases");
11451145

11461146
return Native.enet_initialize() == 0;
11471147
}
@@ -1152,7 +1152,7 @@ public static bool Initialize(Callbacks callbacks)
11521152
throw new ArgumentNullException("callbacks");
11531153

11541154
if (Native.enet_linked_version() != version)
1155-
throw new InvalidOperationException("ENet native is out of date. Download the latest release from https://github.com/SoftwareGuy/ENet-CSharp/releases");
1155+
throw new InvalidOperationException("ENet native library is out of date, please download the latest release from https://github.com/SoftwareGuy/ENet-CSharp/releases");
11561156

11571157
ENetCallbacks nativeCallbacks = callbacks.NativeData;
11581158

0 commit comments

Comments
 (0)