- Game-Music-Emu: Merge commit bf60977.

Commit title: 'Fix compile failures with zlib support enabled.'
This commit is contained in:
Edoardo Prezioso 2016-12-16 22:01:06 +01:00 committed by Christoph Oelckers
parent 3d3bc8e40e
commit dd92587841
1 changed files with 3 additions and 1 deletions

View File

@ -129,6 +129,8 @@ private:
};
#ifdef HAVE_ZLIB_H
#include <zlib.h>
// Gzip compressed file reader
class Gzip_File_Reader : public File_Reader {
public:
@ -143,7 +145,7 @@ public:
long tell() const;
blargg_err_t seek( long );
private:
void* file_;
gzFile file_;
long size_;
};
#endif