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