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>2009-02-23 19:36:46 +0000
committerStijn Buys <ingar@osirion.org>2009-02-23 19:36:46 +0000
commit22052f28695172a7c790f37aa827040c3bb2ec39 (patch)
tree18cce5e928f07dd279adddb73f156cb552238221 /src/osirion.cc
parenta6ff04f9d1c598358d509dbee71437a139579ce0 (diff)
native Framework support on Mac OS X
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;
}