[Scummvm-cvs-logs] CVS: scummvm/common savefile.cpp,1.22,1.23

Max Horn fingolfin at users.sourceforge.net
Sun May 8 16:46:38 CEST 2005


Update of /cvsroot/scummvm/scummvm/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21785

Modified Files:
	savefile.cpp 
Log Message:
Silly copy & paste error :-)

Index: savefile.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/savefile.cpp,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- savefile.cpp	8 May 2005 23:32:31 -0000	1.22
+++ savefile.cpp	8 May 2005 23:45:17 -0000	1.23
@@ -88,7 +88,7 @@
 	}
 
 	void skip(uint32 offset) {
-		::fseek(fh, offset, SEEK_SET);
+		::fseek(fh, offset, SEEK_CUR);
 	}
 };
 
@@ -135,7 +135,7 @@
 	}
 
 	void skip(uint32 offset) {
-		::gzseek(fh, offset, SEEK_SET);
+		::gzseek(fh, offset, SEEK_CUR);
 	}
 };
 #endif





More information about the Scummvm-git-logs mailing list