From 22052f28695172a7c790f37aa827040c3bb2ec39 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Mon, 23 Feb 2009 19:36:46 +0000 Subject: native Framework support on Mac OS X --- src/osirion.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/osirion.cc') 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; } -- cgit v1.2.3