__TIMESTAMP__ doesn't work with GCC, uses __TIME__ and __DATE__ instead.
svn-id: r3566
This commit is contained in:
parent
87631ebe7e
commit
18dce61c93
1 changed files with 1 additions and 1 deletions
|
@ -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:;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue