[Scummvm-cvs-logs] SF.net SVN: scummvm: [27074] scummvm/trunk/engines/agos/intern.h

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Mon Jun 4 06:41:47 CEST 2007


Revision: 27074
          http://scummvm.svn.sourceforge.net/scummvm/?rev=27074&view=rev
Author:   Kirben
Date:     2007-06-03 21:41:46 -0700 (Sun, 03 Jun 2007)

Log Message:
-----------
Fix sign issue, which caused invalid writes, when entering saved game name in Elvira 2 and Waxworks.

Modified Paths:
--------------
    scummvm/trunk/engines/agos/intern.h

Modified: scummvm/trunk/engines/agos/intern.h
===================================================================
--- scummvm/trunk/engines/agos/intern.h	2007-06-04 03:46:56 UTC (rev 27073)
+++ scummvm/trunk/engines/agos/intern.h	2007-06-04 04:41:46 UTC (rev 27074)
@@ -131,11 +131,11 @@
 struct WindowBlock {
 	byte mode;
 	byte flags;
-	uint16 x, y;
-	uint16 width, height;
-	uint16 textColumn, textRow;
+	int16 x, y;
+	int16 width, height;
+	int16 textColumn, textRow;
+	int16 scrollY;
 	uint16 textColumnOffset, textLength, textMaxLength;
-	uint16 scrollY;
 	uint8 fill_color, text_color;
 	IconBlock *iconPtr;
 	WindowBlock() { memset(this, 0, sizeof(*this)); }


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