aboutsummaryrefslogtreecommitdiff
path: root/base/main.cpp
diff options
context:
space:
mode:
authorJonathan Gray2003-10-05 13:58:46 +0000
committerJonathan Gray2003-10-05 13:58:46 +0000
commit8cb0c8c3204b75685dfc6f25d8ac9e49e6c52545 (patch)
treefed4ca2568fee979809c693228fd719035392aee /base/main.cpp
parent84628e217a7478bcf5f782dc3f83f601f71ddced (diff)
downloadscummvm-rg350-8cb0c8c3204b75685dfc6f25d8ac9e49e6c52545.tar.gz
scummvm-rg350-8cb0c8c3204b75685dfc6f25d8ac9e49e6c52545.tar.bz2
scummvm-rg350-8cb0c8c3204b75685dfc6f25d8ac9e49e6c52545.zip
bump version
svn-id: r10606
Diffstat (limited to 'base/main.cpp')
-rw-r--r--base/main.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/base/main.cpp b/base/main.cpp
index 94e565ed5f..2a2cf17428 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -78,9 +78,9 @@
* to setup, but I have no idea if/how one can also change files which are not
* currently being commit'ed.
*/
-const char *gScummVMVersion = "0.5.3cvs";
+const char *gScummVMVersion = "0.5.4cvs";
const char *gScummVMBuildDate = __DATE__ " " __TIME__;
-const char *gScummVMFullVersion = "ScummVM 0.5.3cvs (" __DATE__ " " __TIME__ ")";
+const char *gScummVMFullVersion = "ScummVM 0.5.4cvs (" __DATE__ " " __TIME__ ")";
Config *g_config = 0;
@@ -104,6 +104,10 @@ extern "C" int main(int argc, char *argv[]);
#undef main
#endif
+#if defined (ALLEGRO_BACKEND)
+#include "allegro.h"
+#endif
+
#if defined(UNIX)
#include <sys/param.h>
#ifndef MAXPATHLEN
@@ -331,6 +335,10 @@ int main(int argc, char *argv[]) {
delete system;
return 0;
}
+// allegro needs this for some reason...
+#if defined(ALLEGRO_BACKEND)
+END_OF_MAIN();
+#endif
#endif // WIN32_WCE