r6850 - packages/trunk/funguloids/debian/patches
Andres Mejia
ceros-guest at alioth.debian.org
Sun May 4 05:37:57 UTC 2008
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) {
More information about the Pkg-games-commits
mailing list