WAV files can now be used instead of BCWAV files.

This commit is contained in:
Steveice10
2015-01-24 00:44:57 -08:00
parent 51ba5e21f1
commit eee39ef565
10 changed files with 242 additions and 20 deletions

View File

@@ -47,7 +47,7 @@ int lz11_get_occurence_length(u8* newPtr, int newLength, u8* oldPtr, int oldLeng
u8* lz11_compress(u8* input, u32 inputSize, u32* size) {
if (inputSize > 0xFFFFFF) {
printf("ERROR: LZ11 input is too large.");
printf("ERROR: LZ11 input is too large.\n");
return NULL;
}