diff options
| author | Ray <raysan5@gmail.com> | 2018-10-10 12:31:55 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2018-10-10 12:31:55 +0200 |
| commit | f238b9ea3c6b2b380a07d37ebe82d7fcde4a1ce1 (patch) | |
| tree | 9dacca563e615f9f392e5c8634d712001b83f2e3 /src | |
| parent | a511337ce880f6e910cc0b5b20195c6cf1ec70e7 (diff) | |
| download | raylib-f238b9ea3c6b2b380a07d37ebe82d7fcde4a1ce1.tar.gz raylib-f238b9ea3c6b2b380a07d37ebe82d7fcde4a1ce1.zip | |
Small tweak to avoid warning
Diffstat (limited to 'src')
| -rw-r--r-- | src/audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio.c b/src/audio.c index 9e44d709..95e59931 100644 --- a/src/audio.c +++ b/src/audio.c @@ -2402,7 +2402,7 @@ static Wave LoadMP3(const char *fileName) // Decode an entire MP3 file in one go uint64_t totalSampleCount; - drmp3_config *config; + drmp3_config *config = NULL; wave.data = drmp3_open_and_decode_file_f32(fileName, config, &totalSampleCount); wave.channels = config->outputChannels; |
