You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What version of zlib is preferred for FCEU-Core? I've tried 1.2.8 and it seems too new. Compiling throws the following errors:
src-fceumm/file.c:171:20: error: member reference base type 'void' is not a structure or union
for(tmp->size=0; gzgetc(tz) != EOF; tmp->size++);
^~~~~~~~~~
./utils/zlib/zlib.h:1682:15: note: expanded from macro 'gzgetc'
((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))
~~~^ ~~~~
What version of zlib is preferred for FCEU-Core? I've tried 1.2.8 and it seems too new. Compiling throws the following errors:
When you look at gzgetc it doesn't seem to like passing void as an option since 1.2.4.
I'd be happy to submit PR's to support new versions of zlib if that would be helpful.
The text was updated successfully, but these errors were encountered: