bump version

svn-id: r10606
This commit is contained in:
Jonathan Gray 2003-10-05 13:58:46 +00:00
parent 84628e217a
commit 8cb0c8c320
2 changed files with 11 additions and 3 deletions

View file

@ -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