[Scummvm-cvs-logs] SF.net SVN: scummvm:[52878] scummvm/trunk/engines/hugo/intro.cpp

strangerke at users.sourceforge.net strangerke at users.sourceforge.net
Sat Sep 25 14:59:35 CEST 2010


Revision: 52878
          http://scummvm.svn.sourceforge.net/scummvm/?rev=52878&view=rev
Author:   strangerke
Date:     2010-09-25 12:59:35 +0000 (Sat, 25 Sep 2010)

Log Message:
-----------
HUGO: Fix stricmp use and text color in splash screen

Modified Paths:
--------------
    scummvm/trunk/engines/hugo/intro.cpp

Modified: scummvm/trunk/engines/hugo/intro.cpp
===================================================================
--- scummvm/trunk/engines/hugo/intro.cpp	2010-09-25 12:45:12 UTC (rev 52877)
+++ scummvm/trunk/engines/hugo/intro.cpp	2010-09-25 12:59:35 UTC (rev 52878)
@@ -194,13 +194,11 @@
 	else
 		sprintf(buffer,"%s  Shareware Version", COPYRIGHT);
 
-//	Center_text (190, buffer);
-	_vm.screen().writeStr(CENTER, 190, buffer, _TBRIGHTWHITE);
+	_vm.screen().writeStr(CENTER, 190, buffer, _TBROWN);
 
-	if (stricmp(_boot.distrib, "David P. Gray")) {
-//		Center_text (0, buffer);
+	if (scumm_stricmp(_boot.distrib, "David P. Gray")) {
 		sprintf(buffer, "Distributed by %s.", _boot.distrib);
-		_vm.screen().writeStr(CENTER, 0, buffer, _TBRIGHTWHITE);
+		_vm.screen().writeStr(CENTER, 0, buffer, _TBROWN);
 	}
 
 	_vm.screen().displayBackground();


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list