diff options
| author | Max Horn | 2003-07-15 02:16:33 +0000 | 
|---|---|---|
| committer | Max Horn | 2003-07-15 02:16:33 +0000 | 
| commit | b05e7de7bb7d59647356d63ccb10e53bbec61bcd (patch) | |
| tree | 9086c81565e5a46e912fd00a63239bc46b2bf342 /gui | |
| parent | cc8334638b5f3f79e23b5580282a753f65b75ad5 (diff) | |
| download | scummvm-rg350-b05e7de7bb7d59647356d63ccb10e53bbec61bcd.tar.gz scummvm-rg350-b05e7de7bb7d59647356d63ccb10e53bbec61bcd.tar.bz2 scummvm-rg350-b05e7de7bb7d59647356d63ccb10e53bbec61bcd.zip | |
replaced SCUMMVM_VERSION/SCUMMVM_CVS by gScummVMVersion/gScummVMBuildDate/gScummVMFullVersion; made engine.o depend on all other .o files, so that the build date in it is always up-to-date
svn-id: r9032
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/console.cpp | 4 | ||||
| -rw-r--r-- | gui/launcher.cpp | 4 | 
2 files changed, 3 insertions, 5 deletions
| diff --git a/gui/console.cpp b/gui/console.cpp index c52c54a823..48a370c82c 100644 --- a/gui/console.cpp +++ b/gui/console.cpp @@ -66,8 +66,8 @@ ConsoleDialog::ConsoleDialog(NewGui *gui, int _realWidth)  	_scrollBar->setTarget(this);  	// Display greetings & prompt -	print("ScummVM "SCUMMVM_VERSION" (" SCUMMVM_CVS ")\n"); -	print("Console is ready\n"); +	print(gScummVMFullVersion); +	print("\nConsole is ready\n");  	_promptStartPos = _promptEndPos = -1; diff --git a/gui/launcher.cpp b/gui/launcher.cpp index f25f383377..af821404f5 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -175,9 +175,7 @@ void EditGameDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 dat  LauncherDialog::LauncherDialog(NewGui *gui, GameDetector &detector)  	: Dialog(gui, 0, 0, 320, 200), _detector(detector) {  	// Show game name -	new StaticTextWidget(this, 10, 8, 300, kLineHeight, -								"ScummVM "SCUMMVM_VERSION " (" SCUMMVM_CVS ")",  -								kTextAlignCenter); +	new StaticTextWidget(this, 10, 8, 300, kLineHeight, gScummVMFullVersion, kTextAlignCenter);  	// Add three buttons at the bottom  	addButton(1 * (_w - kButtonWidth) / 6, _h - 24, "Quit", kQuitCmd, 'Q'); | 
