[Super-tux-commit] supertux/lib/app setup.cpp,1.6,1.7 defines.h,1.1,NONE
Brought to you by:
wkendrick
From: Tobias G. <to...@us...> - 2004-07-26 18:09:22
|
Update of /cvsroot/super-tux/supertux/lib/app In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28058/lib/app Modified Files: setup.cpp Removed Files: defines.h Log Message: Moved defines.h out of the library and back to src/. Made Menu independend of global MouseCursor variable. --- defines.h DELETED --- Index: setup.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/app/setup.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- setup.cpp 26 Jul 2004 15:48:37 -0000 1.6 +++ setup.cpp 26 Jul 2004 18:09:12 -0000 1.7 @@ -42,7 +42,6 @@ #include <cctype> #include "../app/globals.h" -#include "../app/defines.h" #include "../app/setup.h" #include "../video/screen.h" #include "../video/surface.h" @@ -775,8 +774,8 @@ } else if (strcmp(argv[i], "--help") == 0) { /* Show help: */ - puts(_(" SuperTux " VERSION "\n" - " Please see the file \"README.txt\" for more details.\n")); + puts(_((" SuperTux " + package_version + "\n" + " Please see the file \"README.txt\" for more details.\n").c_str())); printf(_("Usage: %s [OPTIONS] FILENAME\n\n"), argv[0]); puts(_("Display Options:\n" " -f, --fullscreen Run in fullscreen mode.\n" |