Update dr_libs

This commit is contained in:
Joel16 2019-10-06 21:23:54 -04:00
parent 23bbe13b2a
commit cf215799cc
4 changed files with 6287 additions and 3728 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@ static drflac *flac;
static drflac_uint64 frames_read = 0;
int FLAC_Init(const char *path) {
flac = drflac_open_file(path);
flac = drflac_open_file(path, NULL);
if (flac == NULL)
return -1;

View File

@ -6,7 +6,7 @@ static drwav wav;
static drwav_uint64 frames_read = 0;
int WAV_Init(const char *path) {
if (!drwav_init_file(&wav, path))
if (!drwav_init_file(&wav, path, NULL))
return -1;
return 0;