[Scummvm-cvs-logs] SF.net SVN: scummvm: [26780] scummvm/trunk/engines/agos
kirben at users.sourceforge.net
kirben at users.sourceforge.net
Mon May 7 15:09:11 CEST 2007
Revision: 26780
http://scummvm.svn.sourceforge.net/scummvm/?rev=26780&view=rev
Author: kirben
Date: 2007-05-07 06:09:10 -0700 (Mon, 07 May 2007)
Log Message:
-----------
The Palette difference in inventory arrows, applies to AGA version of Simon the Sorcerer 1 too.
Modified Paths:
--------------
scummvm/trunk/engines/agos/icons.cpp
scummvm/trunk/engines/agos/verb.cpp
Modified: scummvm/trunk/engines/agos/icons.cpp
===================================================================
--- scummvm/trunk/engines/agos/icons.cpp 2007-05-07 13:03:02 UTC (rev 26779)
+++ scummvm/trunk/engines/agos/icons.cpp 2007-05-07 13:09:10 UTC (rev 26780)
@@ -680,7 +680,7 @@
// TODO: Manually draws arrows
} else {
stopAnimate(128);
- uint8 palette = (getGameId() == GID_SIMON1CD32) ? 15: 14;
+ uint8 palette = (getPlatform() == Common::kPlatformAmiga) ? 15: 14;
animate(0, 1, 128, 0, 0, palette);
}
}
Modified: scummvm/trunk/engines/agos/verb.cpp
===================================================================
--- scummvm/trunk/engines/agos/verb.cpp 2007-05-07 13:03:02 UTC (rev 26779)
+++ scummvm/trunk/engines/agos/verb.cpp 2007-05-07 13:09:10 UTC (rev 26780)
@@ -855,8 +855,6 @@
if (!(color & 0xF) || (color & 0xF) == 10) {
color ^= 10;
src[i] = color;
- } else {
- printf("Color %d %d\n", color, color & 0xF);
}
} else if (getGameType() == GType_ELVIRA2) {
if (!(color & 1)) {
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