Philip Abbet

Results 13 comments of Philip Abbet

Hello I could reproduce the problem, using the same command lines than you. I don't know what those files are supposed to be, but I failed to extract any of...

Is extracting a file by its number a feature of StormLib? I had a quick glance at its API, but it doesn't seems so. MPQExtractor is only a small layer...

Hello I don't have Warcraft III installed here, so I can't try it right now. But we can try to find the problem. What command did you enter?

This should work: `./MPQExtractor -e "*" -f -o out /path/to/art.MPQ` (note that the \* is enclosed in "", to prevent the shell to interpret it) Or maybe were you suggesting...

The executable is in `build/bin/` : ``` --------------------------------------- - Compilation --------------------------------------- somewhere$ mkdir build somewhere$ cd build build$ cmake build$ make The executable will be put in build/bin/ ``` As...

Hello Please try the version I just pushed. The issue is that the version of StormLib was very old. I added instructions in the README about how to update it...

Ok, I did break things...

Hello Sorry, I can't find any trace of that message, where did you said that? I will look at that as soon as I can.

From line https://github.com/nothings/stb/blob/2e2bef463a5b53ddf8bb788e25da6b8506314c08/stb_image.h#L4827, the code basically looks like: ``` if (depth == 16) { // big-endian to little-endian conversion } ``` instead of something like: ``` if ((depth == 16)...

I might not understand what "platform-native" means in that context then. And admittedly, I don't really know how the `stbi__create_png_image_raw()` function is used in the whole PNG decoding scheme-of-things. I...