[Scummvm-cvs-logs] scummvm master -> 5d1e1fbbbcff5c930b1f929883e9e0cf897e585f

bluegr md5 at scummvm.org
Sun Dec 18 12:17:44 CET 2011


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:
5d1e1fbbbc DREAMWEB: Spacing


Commit: 5d1e1fbbbcff5c930b1f929883e9e0cf897e585f
    https://github.com/scummvm/scummvm/commit/5d1e1fbbbcff5c930b1f929883e9e0cf897e585f
Author: Filippos Karapetis (md5 at scummvm.org)
Date: 2011-12-18T03:16:25-08:00

Commit Message:
DREAMWEB: Spacing

Changed paths:
    engines/dreamweb/saveload.cpp



diff --git a/engines/dreamweb/saveload.cpp b/engines/dreamweb/saveload.cpp
index e9a670c..52f2851 100644
--- a/engines/dreamweb/saveload.cpp
+++ b/engines/dreamweb/saveload.cpp
@@ -432,8 +432,8 @@ void DreamGenContext::savePosition(unsigned int slot, const char *descbuf) {
 
 	// TODO: Convert more to serializer?
 	Common::Serializer s(0, outSaveFile);
-	for (unsigned int i = 0; 8*i < kLenofreelrouts; ++i) {
-		syncReelRoutine(s, (ReelRoutine*)data.ptr(kReelroutines + 8*i, 8));
+	for (unsigned int i = 0; 8 * i < kLenofreelrouts; ++i) {
+		syncReelRoutine(s, (ReelRoutine *)data.ptr(kReelroutines + 8 * i, 8));
 	}
 
 	// ScummVM data block
@@ -498,8 +498,8 @@ void DreamGenContext::loadPosition(unsigned int slot) {
 
 	// TODO: Use serializer for more
 	Common::Serializer s(inSaveFile, 0);
-	for (unsigned int i = 0; 8*i < kLenofreelrouts; ++i) {
-		syncReelRoutine(s, (ReelRoutine*)data.ptr(kReelroutines + 8*i, 8));
+	for (unsigned int i = 0; 8 * i < kLenofreelrouts; ++i) {
+		syncReelRoutine(s, (ReelRoutine *)data.ptr(kReelroutines + 8 * i, 8));
 	}
 
 	// Check if there's a ScummVM data block






More information about the Scummvm-git-logs mailing list