John Scott
John Scott
As the subject states - I have a data block which is 0x100043 in length that decompresses to 0x100000 fine in C++ (code below), but exceptions with a bad data...
I compiled Hoard with Visual Studio 2022 NMake - the only required change was: ` void * __attribute__((flatten)) xxmalloc (size_t sz) __attribute__((alloc_size(1))) __attribute((malloc))` to ` void * [[forceinline]] xxmalloc (size_t...
void DxtcReadColor(ILushort Data, Color8888* Out) { ILubyte r, g, b; b = Data & 0x1f; g = (Data & 0x7E0) >> 5; r = (Data & 0xF800) >> 11; Out->r...