__TIMESTAMP__ doesn't work with GCC, uses __TIME__ and __DATE__ instead.

svn-id: r3566
This commit is contained in:
Ludvig Strigeus 2002-02-03 21:46:26 +00:00
parent 87631ebe7e
commit 18dce61c93

View File

@ -380,7 +380,7 @@ void Scumm::parseCommandLine(int argc, char **argv) {
_fullScreen = true;
break;
case 'v':
printf("ScummVM " SCUMMVM_VERSION "\nBuilt on " __TIMESTAMP__ "\n");
printf("ScummVM " SCUMMVM_VERSION "\nBuilt on " __DATE__ " " __TIME__ "\n");
exit(1);
default:
ShowHelpAndExit:;