From ec0051c414bc970a087a0650c927358d88f02cab Mon Sep 17 00:00:00 2001 From: Rusmir Dusko Date: Tue, 17 Dec 2013 13:42:42 +0000 Subject: Blob Wars : Metal Blob Solid is a platform game, not unlike those found on the Amiga and SNES. The object of the game is to take on the role of solider Blob, Bob, and play through the various levels and attempt to rescue as many MIA (Missing In Action) Blobs as possible. This is not quite as straight forward as it sounds, since the MIAs will often be not directly reachable and will require some extra thought. Bob also has to contend with environmental hazards, alien invaders and assimilated Blobs. WWW: http://www.parallelrealities.co.uk/p/blob-wars-metal-blob-solid.html Approved by: pawel (mentor) --- games/blobwars/files/patch-src__pak.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 games/blobwars/files/patch-src__pak.cpp (limited to 'games/blobwars/files/patch-src__pak.cpp') diff --git a/games/blobwars/files/patch-src__pak.cpp b/games/blobwars/files/patch-src__pak.cpp new file mode 100644 index 000000000000..5cb183a5430c --- /dev/null +++ b/games/blobwars/files/patch-src__pak.cpp @@ -0,0 +1,20 @@ +--- ./src/pak.cpp.orig 2011-04-17 16:56:56.000000000 +0200 ++++ ./src/pak.cpp 2013-12-08 23:09:51.000000000 +0100 +@@ -119,7 +119,7 @@ + { + printf("Couldn't open %s for reading!\n", filename); + closedir(dirp); +- gzclose(pak); ++ gzclose((gzFile)pak); + exit(1); + } + +@@ -141,7 +141,7 @@ + { + printf("Couldn't open %s for reading!\n", filename); + closedir(dirp); +- gzclose(pak); ++ gzclose((gzFile)pak); + exit(1); + } + else -- cgit v1.2.3