From 0c16af01e543cdf8c787ed65a022cc89f42b3ef9 Mon Sep 17 00:00:00 2001 From: RDR8 Date: Sat, 25 Mar 2017 20:41:04 -0500 Subject: Replaced font.size with font.baseSize. Uncommented linux libs. Typo or two --- src/audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/audio.c b/src/audio.c index 68bd88e9..a23d11e7 100644 --- a/src/audio.c +++ b/src/audio.c @@ -1207,7 +1207,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)); -- cgit v1.2.3