diff options
| author | Ray <[email protected]> | 2017-03-26 22:49:11 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2017-03-26 22:49:11 +0200 |
| commit | 90b36bd274d523eb54700f71069558b15731adb0 (patch) | |
| tree | c3a808940096983ca9753ad0d546d1567be2120b /src/audio.c | |
| parent | b7a8a40e71f6c4467afd260c1f66e2c46891397f (diff) | |
| parent | 160408f26976868480c2e792e200b7aa9c545319 (diff) | |
| download | raylib-90b36bd274d523eb54700f71069558b15731adb0.tar.gz raylib-90b36bd274d523eb54700f71069558b15731adb0.zip | |
Merge branch 'develop' of https://github.com/raysan5/raylib into develop
Diffstat (limited to 'src/audio.c')
| -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 159b45ac..5edabf41 100644 --- a/src/audio.c +++ b/src/audio.c @@ -1266,7 +1266,7 @@ static Wave LoadOGG(const char *fileName) wave.sampleCount = (int)stb_vorbis_stream_length_in_samples(oggFile); float totalSeconds = stb_vorbis_stream_length_in_seconds(oggFile); - if (totalSeconds > 10) TraceLog(WARNING, "[%s] Ogg audio lenght is larger than 10 seconds (%f), that's a big file in memory, consider music streaming", fileName, totalSeconds); + if (totalSeconds > 10) TraceLog(WARNING, "[%s] Ogg audio length is larger than 10 seconds (%f), that's a big file in memory, consider music streaming", fileName, totalSeconds); wave.data = (short *)malloc(wave.sampleCount*wave.channels*sizeof(short)); |
