From 60f0f47c81eefb91863549d3dc37aa58422e3675 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Mon, 2 Aug 2010 21:05:05 -0600 Subject: Fix enet version check Tested-by: BaseBallBoy --- src/net/connectionhandler.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/net/connectionhandler.cpp') diff --git a/src/net/connectionhandler.cpp b/src/net/connectionhandler.cpp index 6aa58569..986d9dec 100644 --- a/src/net/connectionhandler.cpp +++ b/src/net/connectionhandler.cpp @@ -40,19 +40,17 @@ bool ConnectionHandler::startListen(enet_uint16 port, enet_address_set_host(&address, listenHost.c_str()); LOG_INFO("Listening on port " << port << "..."); -#if ENET_VERSION_MAJOR != 1 -#error Unsuported enet version! -#elif ENET_VERSION_MINOR < 3 +#ifdef ENET_VERSION_MAJOR host = enet_host_create( &address /* the address to bind the server host to */, Configuration::getValue("net_maxClients", 1000) /* allowed connections */, + 0 /* unlimited channel count */, 0 /* assume any amount of incoming bandwidth */, 0 /* assume any amount of outgoing bandwidth */); #else host = enet_host_create( &address /* the address to bind the server host to */, Configuration::getValue("net_maxClients", 1000) /* allowed connections */, - 0 /* unlimited channel count */, 0 /* assume any amount of incoming bandwidth */, 0 /* assume any amount of outgoing bandwidth */); #endif -- cgit v1.2.3-60-g2f50