sdl bugfix: compile with gcc 4.6.2

This commit is contained in:
punkrockguy318 2012-02-02 06:56:04 +00:00
parent c1469cb418
commit afcda92ecb
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ FCEUFILE * FCEU_fopen(const char *path, const char *ipsfn, char *mode, char *ext
if(magic==0x088b1f) {
// maybe gzip...
void* gzfile = gzopen(fileToOpen.c_str(),"rb");
gzFile gzfile = gzopen(fileToOpen.c_str(),"rb");
if(gzfile) {
delete fp;