do the bashing via the BashDoor action
[gemrb.git] / gemrb / GemRB.cpp
blob72f66c0248b365e90e3c5205e01ca5cfc8abbd4a
1 /* GemRB - Infinity Engine Emulator
2 * Copyright (C) 2003 The GemRB Project
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 // GemRB.cpp : Defines the entry point for the application.
23 #include "win32def.h" // logging
25 #include <cstdio>
27 #include "Interface.h"
30 //this supposed to convince SDL to work on OS/X
31 //WARNING: commenting this out will cause SDL 1.2.x to crash
32 #ifdef __APPLE_CC__ // we need startup SDL here
33 #include <SDL.h>
34 #endif
36 int main(int argc, char* argv[])
38 Interface::SanityCheck(VERSION_GEMRB);
39 core = new Interface( argc, argv );
40 if (core->Init() == GEM_ERROR) {
41 delete( core );
42 printf("Press enter to continue...");
43 textcolor(DEFAULT);
44 getc(stdin);
45 return -1;
47 core->Main();
48 delete( core );
49 textcolor(DEFAULT);
50 return 0;