summaryrefslogtreecommitdiff
blob: 8062f946518a427651929e88a638e4765ab5ae4c (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/fceu2.1.5/src/file.cpp
+++ b/fceu2.1.5/src/file.cpp
@@ -310,7 +310,7 @@
 				if(magic==0x088b1f) {
 					 // maybe gzip... 
 
-					void* gzfile = gzopen(fileToOpen.c_str(),"rb");
+					gzFile gzfile = gzopen(fileToOpen.c_str(),"rb");
 					if(gzfile) {
 						delete fp;