[Scummvm-cvs-logs] scummvm master -> befa99ca7761370e9f11c425b459d410d371723f

digitall dgturner at iee.org
Sun Sep 29 04:19:11 CEST 2013


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
befa99ca77 SWORD25: Some more fixes for Amiga OS 4 compilation.


Commit: befa99ca7761370e9f11c425b459d410d371723f
    https://github.com/scummvm/scummvm/commit/befa99ca7761370e9f11c425b459d410d371723f
Author: D G Turner (digitall at scummvm.org)
Date: 2013-09-28T19:21:55-07:00

Commit Message:
SWORD25: Some more fixes for Amiga OS 4 compilation.

Changed paths:
    engines/sword25/gfx/renderobject.cpp



diff --git a/engines/sword25/gfx/renderobject.cpp b/engines/sword25/gfx/renderobject.cpp
index af12f61..e9e11aa 100644
--- a/engines/sword25/gfx/renderobject.cpp
+++ b/engines/sword25/gfx/renderobject.cpp
@@ -413,10 +413,10 @@ bool RenderObject::persist(OutputPersistenceBlock &writer) {
 	writer.write(_visible);
 	writer.write(_childChanged);
 	writer.write(_initSuccess);
-	writer.write(_bbox.left);
-	writer.write(_bbox.top);
-	writer.write(_bbox.right);
-	writer.write(_bbox.bottom);
+	writer.write((int32)_bbox.left);
+	writer.write((int32)_bbox.top);
+	writer.write((int32)_bbox.right);
+	writer.write((int32)_bbox.bottom);
 	writer.write((int32)_oldBbox.left);
 	writer.write((int32)_oldBbox.top);
 	writer.write((int32)_oldBbox.right);






More information about the Scummvm-git-logs mailing list