Author: ceros-guest
Date: 2008-05-04 05:37:57 +0000 (Sun, 04 May 2008)
New Revision: 6850

Added:
   packages/trunk/funguloids/debian/patches/size_chunks_reverse.patch
Log:
Send patch

Added: packages/trunk/funguloids/debian/patches/size_chunks_reverse.patch
===================================================================
--- packages/trunk/funguloids/debian/patches/size_chunks_reverse.patch          
                (rev 0)
+++ packages/trunk/funguloids/debian/patches/size_chunks_reverse.patch  
2008-05-04 05:37:57 UTC (rev 6850)
@@ -0,0 +1,14 @@
+Correction for MPakDataStream::read(). This reflects what's done in the
+FileHandleDataStream::read() method in OgreDataStream.cpp in the Ogre library.
+=====================================================================
+--- src/mpakogre.cpp.bak       2008-05-04 01:05:10.000000000 -0400
++++ src/mpakogre.cpp   2008-05-04 00:56:05.000000000 -0400
+@@ -219,7 +219,7 @@
+ }
+ 
+ size_t MPakDataStream::read(void *buf, size_t count) {
+-      return fread(buf, count, 1, mFileHandle);
++      return fread(buf, 1, count, mFileHandle);
+ }
+ 
+ void MPakDataStream::skip(long count) {


_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

Reply via email to