Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-11-08 14:33:14 +0000
committerStijn Buys <ingar@osirion.org>2008-11-08 14:33:14 +0000
commit731dfb8f3ca9c34e4160021cb221c3056c00dbf9 (patch)
treecb8214aa1a8990dbb4b0e1ef4688eea030c76a52 /src/osiriond.cc
parent1317b6c1a231f5ccaf4ce11814863c77f93d8921 (diff)
finalized renaming from server namespace to dedicated
Diffstat (limited to 'src/osiriond.cc')
-rw-r--r--src/osiriond.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osiriond.cc b/src/osiriond.cc
index bd88df0..f38d553 100644
--- a/src/osiriond.cc
+++ b/src/osiriond.cc
@@ -4,7 +4,7 @@
the terms and conditions of the GNU General Public License version 2
*/
-#include "server/server.h"
+#include "dedicated/dedicated.h"
#include "game/game.h"
int main(int count, char **arguments)
@@ -12,7 +12,7 @@ int main(int count, char **arguments)
// preload the game module
game::register_modules(false);
- server::main(count, arguments);
+ dedicated::run(count, arguments);
return 0;
}