WAV files can now be used instead of BCWAV files.

This commit is contained in:
Steven Smith
2015-01-24 00:44:57 -08:00
parent 2737e7455b
commit 89619c1ab8
10 changed files with 242 additions and 20 deletions
+1 -1
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;
}