diff options
| author | RDR8 <[email protected]> | 2017-03-25 20:41:04 -0500 |
|---|---|---|
| committer | RDR8 <[email protected]> | 2017-03-25 20:41:04 -0500 |
| commit | 0c16af01e543cdf8c787ed65a022cc89f42b3ef9 (patch) | |
| tree | b2e8665e691b7cee761aaf5c2ba56a68a87fc548 /src/audio.c | |
| parent | 3f0c29642225f4da40e29e83117a4589f95be538 (diff) | |
| download | raylib-0c16af01e543cdf8c787ed65a022cc89f42b3ef9.tar.gz raylib-0c16af01e543cdf8c787ed65a022cc89f42b3ef9.zip | |
Replaced font.size with font.baseSize. Uncommented linux libs. Typo or two
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 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)); |
