summaryrefslogtreecommitdiff
path: root/src/gui/windows/serverdialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-15 21:46:45 +0300
committerAndrei Karas <akaras@inbox.ru>2016-03-15 21:46:45 +0300
commit365b09d7029abf778d4210cb47f393dee5d749a5 (patch)
treeb71ea1994aa2db4ccc1b7f4df612676d441aacf0 /src/gui/windows/serverdialog.cpp
parent77afc97b4d6e4caace275d8bc21a94525ad070e2 (diff)
downloadplus-365b09d7029abf778d4210cb47f393dee5d749a5.tar.gz
plus-365b09d7029abf778d4210cb47f393dee5d749a5.tar.bz2
plus-365b09d7029abf778d4210cb47f393dee5d749a5.tar.xz
plus-365b09d7029abf778d4210cb47f393dee5d749a5.zip
Remove old evol server type.
Diffstat (limited to 'src/gui/windows/serverdialog.cpp')
-rw-r--r--src/gui/windows/serverdialog.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/gui/windows/serverdialog.cpp b/src/gui/windows/serverdialog.cpp
index 158d5909e..179173d2c 100644
--- a/src/gui/windows/serverdialog.cpp
+++ b/src/gui/windows/serverdialog.cpp
@@ -53,14 +53,10 @@ static std::string serverTypeToString(const ServerTypeT type)
{
switch (type)
{
-#ifdef TMWA_SUPPORT
case ServerType::TMWATHENA:
+#ifdef TMWA_SUPPORT
return "TmwAthena";
- case ServerType::EVOL:
- return "Evol";
#else
- case ServerType::TMWATHENA:
- case ServerType::EVOL:
return "";
#endif
#ifdef EATHENA_SUPPORT
@@ -92,7 +88,6 @@ static uint16_t defaultPortForServerType(const ServerTypeT type)
case ServerType::UNKNOWN:
#ifdef TMWA_SUPPORT
case ServerType::TMWATHENA:
- case ServerType::EVOL:
#endif
return 6901;
}