mirror of
https://github.com/joel16/ElevenMPV.git
synced 2024-11-26 21:10:25 +00:00
Update dr_libs
This commit is contained in:
parent
23bbe13b2a
commit
cf215799cc
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user