[Scummvm-cvs-logs] CVS: scummvm/gui console.cpp,1.26,1.27 launcher.cpp,1.40,1.41

Max Horn fingolfin at users.sourceforge.net
Mon Jul 14 19:17:03 CEST 2003


Update of /cvsroot/scummvm/scummvm/gui
In directory sc8-pr-cvs1:/tmp/cvs-serv17891/gui

Modified Files:
	console.cpp launcher.cpp 
Log Message:
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

Index: console.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/console.cpp,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- console.cpp	3 May 2003 21:49:19 -0000	1.26
+++ console.cpp	15 Jul 2003 02:16:33 -0000	1.27
@@ -66,8 +66,8 @@
 	_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;
 

Index: launcher.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/launcher.cpp,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- launcher.cpp	15 Jun 2003 02:02:36 -0000	1.40
+++ launcher.cpp	15 Jul 2003 02:16:33 -0000	1.41
@@ -175,9 +175,7 @@
 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');





More information about the Scummvm-git-logs mailing list