summaryrefslogtreecommitdiffhomepage
path: root/src/audio.c
diff options
context:
space:
mode:
authorRay <[email protected]>2017-03-26 22:49:11 +0200
committerRay <[email protected]>2017-03-26 22:49:11 +0200
commit90b36bd274d523eb54700f71069558b15731adb0 (patch)
treec3a808940096983ca9753ad0d546d1567be2120b /src/audio.c
parentb7a8a40e71f6c4467afd260c1f66e2c46891397f (diff)
parent160408f26976868480c2e792e200b7aa9c545319 (diff)
downloadraylib-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.c2
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));