aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scummvm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scummvm.cpp b/scummvm.cpp
index a6fe62322b..551a524d85 100644
--- a/scummvm.cpp
+++ b/scummvm.cpp
@@ -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:;