diff options
Diffstat (limited to 'src/net/manaserv/network.cpp')
-rw-r--r-- | src/net/manaserv/network.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/net/manaserv/network.cpp b/src/net/manaserv/network.cpp index b83bc5748..44478fb4c 100644 --- a/src/net/manaserv/network.cpp +++ b/src/net/manaserv/network.cpp @@ -33,6 +33,8 @@ #include <map> +#include "debug.h" + /** * The local host which is shared for all outgoing connections. */ @@ -56,9 +58,9 @@ void initialize() } #if defined(ENET_VERSION) && ENET_VERSION >= ENET_CUTOFF - client = enet_host_create(NULL, 3, 0, 0, 0); + client = enet_host_create(nullptr, 3, 0, 0, 0); #else - client = enet_host_create(NULL, 3, 0, 0); + client = enet_host_create(nullptr, 3, 0, 0); #endif if (!client) |