aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudvig Strigeus2001-10-10 12:52:21 +0000
committerLudvig Strigeus2001-10-10 12:52:21 +0000
commit1ec6a4300853067dbf42508982f3a7981780228c (patch)
tree427182b2c9431214823713ea7feffa702b2da0d1
parenta50495ed271f5a0341e937ce06dec00c14d8e37d (diff)
downloadscummvm-rg350-1ec6a4300853067dbf42508982f3a7981780228c.tar.gz
scummvm-rg350-1ec6a4300853067dbf42508982f3a7981780228c.tar.bz2
scummvm-rg350-1ec6a4300853067dbf42508982f3a7981780228c.zip
fixed bug in GDI_UnkDecode7()
svn-id: r3419
-rw-r--r--gfx.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/gfx.cpp b/gfx.cpp
index cede07bdac..e3cc858481 100644
--- a/gfx.cpp
+++ b/gfx.cpp
@@ -17,6 +17,9 @@
*
* Change Log:
* $Log$
+ * Revision 1.3 2001/10/10 12:52:21 strigeus
+ * fixed bug in GDI_UnkDecode7()
+ *
* Revision 1.2 2001/10/10 10:02:33 strigeus
* alternative mouse cursor
* basic save&load
@@ -1142,6 +1145,7 @@ void Scumm::GDI_UnkDecode7() {
((uint32*)dst)[1] = ((uint32*)src)[1];
#endif
dst += 320;
+ src += 8;
} while (--height);
}
@@ -1646,4 +1650,4 @@ void Scumm::GDI_removeMouse() {
} while (--h);
}
}
-#endif \ No newline at end of file
+#endif