03-17-2016, 01:51 AM -
Hello. This is my first post on the forum, so if this is in the wrong place, please let me know.
I've forked the build for RPCS3 and started working on removing wx dependencies in emucore. So far I've only changed rpcs3/Crypto/unself.cpp to use zlib instead of wxStreams to handle decompression of 64-bit SELF files.
As far as I can tell, this hasn't affected my build, but I haven't found a good SELF file to test on. So that's problem number 1.
Problem number 2 is that zlib.h is packaged inside wxWidgets, so I have to #include "../../wxWidgets/src/zlib/zlib.h". Obviously, this doesn't really eliminate the dependency on wxWidgets.
So, how should I handle these two problems? Thanks!
I've forked the build for RPCS3 and started working on removing wx dependencies in emucore. So far I've only changed rpcs3/Crypto/unself.cpp to use zlib instead of wxStreams to handle decompression of 64-bit SELF files.
As far as I can tell, this hasn't affected my build, but I haven't found a good SELF file to test on. So that's problem number 1.
Problem number 2 is that zlib.h is packaged inside wxWidgets, so I have to #include "../../wxWidgets/src/zlib/zlib.h". Obviously, this doesn't really eliminate the dependency on wxWidgets.
So, how should I handle these two problems? Thanks!