diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-02-10 06:19:16 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-02-10 06:19:16 +0000 |
commit | b4d134183ff7c488e629f6c773e646678a903f35 (patch) | |
tree | 84004f31d452a15899817fbcc43d9a4068915891 /src/main.cpp | |
parent | b67c1813727cbc913eb063dea48ca109844f52fe (diff) | |
download | mana-b4d134183ff7c488e629f6c773e646678a903f35.tar.gz mana-b4d134183ff7c488e629f6c773e646678a903f35.tar.bz2 mana-b4d134183ff7c488e629f6c773e646678a903f35.tar.xz mana-b4d134183ff7c488e629f6c773e646678a903f35.zip |
Fix default port in GUI
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 97f2a277..d446944c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -338,7 +338,7 @@ void init_engine(const Options &options) // Fill configuration with defaults logger->log(_("Initializing configuration...")); config.setValue("host", "www.themanaworld.org"); - config.setValue("port", 21001); + config.setValue("port", 6901); config.setValue("hwaccel", 0); #if (defined __APPLE__ || defined WIN32) && defined USE_OPENGL config.setValue("opengl", 1); |