diff options
| author | raysan5 <[email protected]> | 2020-02-10 10:56:48 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-02-10 10:56:48 +0100 |
| commit | 131132f17d801741fee1b8414946ca496614cd6c (patch) | |
| tree | dc477833a37038a272725fb9221658b96247aa95 /src/raudio.c | |
| parent | 884e868e92649cdd43a481435009052fd792984b (diff) | |
| download | raylib-131132f17d801741fee1b8414946ca496614cd6c.tar.gz raylib-131132f17d801741fee1b8414946ca496614cd6c.zip | |
Minor tweaks
Diffstat (limited to 'src/raudio.c')
| -rw-r--r-- | src/raudio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raudio.c b/src/raudio.c index cabe6a3a..b8f06e6c 100644 --- a/src/raudio.c +++ b/src/raudio.c @@ -2064,7 +2064,7 @@ static Wave LoadFLAC(const char *fileName) Wave wave; // Decode an entire FLAC file in one go - uint64_t totalSampleCount; + unsigned long long int totalSampleCount; wave.data = drflac_open_file_and_read_pcm_frames_s16(fileName, &wave.channels, &wave.sampleRate, &totalSampleCount); wave.sampleCount = (unsigned int)totalSampleCount; @@ -2088,7 +2088,7 @@ static Wave LoadMP3(const char *fileName) Wave wave = { 0 }; // Decode an entire MP3 file in one go - uint64_t totalFrameCount = 0; + unsigned long long int totalFrameCount = 0; drmp3_config config = { 0 }; wave.data = drmp3_open_file_and_read_f32(fileName, &config, &totalFrameCount); |
