summaryrefslogtreecommitdiff
path: root/src/net/manaserv/connection.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-04-10 16:35:40 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-04-16 23:17:21 +0200
commit76188096f64b8cc600d2f18cbf7a4d0c7ae87136 (patch)
tree5ad9c60e6a0fc0ce3e4dc93e7d0c1ec4eebaf041 /src/net/manaserv/connection.cpp
parente43b1bf752829b9e0d612c0727c666f9508b93bc (diff)
downloadmana-client-76188096f64b8cc600d2f18cbf7a4d0c7ae87136.tar.gz
mana-client-76188096f64b8cc600d2f18cbf7a4d0c7ae87136.tar.bz2
mana-client-76188096f64b8cc600d2f18cbf7a4d0c7ae87136.tar.xz
mana-client-76188096f64b8cc600d2f18cbf7a4d0c7ae87136.zip
Removed ENet version checks since only 1.3 should be used anyway
Reviewed-by: Stefan Dombrowski
Diffstat (limited to 'src/net/manaserv/connection.cpp')
-rw-r--r--src/net/manaserv/connection.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/net/manaserv/connection.cpp b/src/net/manaserv/connection.cpp
index b404191f..4b421a04 100644
--- a/src/net/manaserv/connection.cpp
+++ b/src/net/manaserv/connection.cpp
@@ -60,11 +60,7 @@ bool Connection::connect(const std::string &address, short port)
enetAddress.port = port;
// Initiate the connection, allocating channel 0.
-#if defined(ENET_VERSION) && ENET_VERSION >= ENET_CUTOFF
mConnection = enet_host_connect(mClient, &enetAddress, 1, 0);
-#else
- mConnection = enet_host_connect(mClient, &enetAddress, 1);
-#endif
if (!mConnection)
{