[Scummvm-cvs-logs] SF.net SVN: scummvm:[40678] scummvm/trunk/engines/sci/engine/kgraphics.cpp
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Mon May 18 11:59:54 CEST 2009
Revision: 40678
http://scummvm.svn.sourceforge.net/scummvm/?rev=40678&view=rev
Author: thebluegr
Date: 2009-05-18 09:59:54 +0000 (Mon, 18 May 2009)
Log Message:
-----------
Fixed incorrect order of parameters in the workaround debug message shown for LSL6
Modified Paths:
--------------
scummvm/trunk/engines/sci/engine/kgraphics.cpp
Modified: scummvm/trunk/engines/sci/engine/kgraphics.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kgraphics.cpp 2009-05-18 09:07:31 UTC (rev 40677)
+++ scummvm/trunk/engines/sci/engine/kgraphics.cpp 2009-05-18 09:59:54 UTC (rev 40678)
@@ -2389,7 +2389,7 @@
s->gfx_state->gfxResMan->freeAllResources();
} else {
// WORKAROUND for LSL6
- printf("SetPort case 6 called in LSL6. Origin: %d, %d - Clip rect: %d, %d, %d, %d\n", SKPV(0), SKPV(1), UKPV(2), UKPV(3), UKPV(4), UKPV(5));
+ printf("SetPort case 6 called in LSL6. Origin: %d, %d - Clip rect: %d, %d, %d, %d\n", SKPV(1), SKPV(0), UKPV(5), UKPV(4), UKPV(3), UKPV(2));
}
break;
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