Browse Source

Update README.md

NX 7 years ago
parent
commit
f4c2863a52
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -144,7 +144,7 @@ NoMemoryCallback OnNoMemory = () => {
 
 Callbacks callbacks = new Callbacks(OnMemoryAllocate, OnMemoryFree, OnNoMemory);
 
-if (!ENet.Library.Initialize(callbacks))
+if (ENet.Library.Initialize(callbacks))
 	Console.WriteLine("ENet successfully initialized using a custom memory allocator");
 ```