Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/osirion.cc')
-rw-r--r--src/osirion.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/osirion.cc b/src/osirion.cc
index 04218be..4db5e6f 100644
--- a/src/osirion.cc
+++ b/src/osirion.cc
@@ -4,15 +4,17 @@
the terms and conditions of the GNU General Public License version 2
*/
+#include "SDL/SDL.h"
+
#include "client/client.h"
#include "game/game.h"
-int main(int count, char **arguments)
+int main(int argc, char *argv[])
{
// load the game modules
register_modules(true);
- client::run(count, arguments);
+ client::run(argc, argv);
return 0;
}