Merge branch 'master' into dev

This commit is contained in:
David Reid
2019-10-19 07:48:54 +10:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ int main(int argc, char** argv)
wavFormat.sampleRate = 44100;
wavFormat.bitsPerSample = 32;
if (drwav_init_file_write(&wav, argv[1], &wavFormat) == DRWAV_FALSE) {
if (drwav_init_file_write(&wav, argv[1], &wavFormat, NULL) == DRWAV_FALSE) {
printf("Failed to initialize output file.\n");
return -1;
}
+1 -1
View File
@@ -49,7 +49,7 @@ int main(int argc, char** argv)
wavFormat.sampleRate = 44100;
wavFormat.bitsPerSample = 32;
if (drwav_init_file_write(&wav, argv[1], &wavFormat) == DRWAV_FALSE) {
if (drwav_init_file_write(&wav, argv[1], &wavFormat, NULL) == DRWAV_FALSE) {
printf("Failed to initialize output file.\n");
return -1;
}