Emit mspack debug messages to Xenia.

This commit is contained in:
gibbed
2018-11-24 20:50:30 -06:00
parent 08fb15fcca
commit 7f4f90b1ea
3 changed files with 20 additions and 2 deletions

View File

@@ -15,6 +15,11 @@
#include <system.h>
#include <lzx.h>
extern void xenia_log(const char*, ...);
#undef D
#define D(x) do { xenia_log x; } while (0);
/* Microsoft's LZX document (in cab-sdk.exe) and their implementation
* of the com.ms.util.cab Java package do not concur.
*