Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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;
}