diff options
| author | Ray <raysan5@gmail.com> | 2017-03-26 14:43:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-26 14:43:21 +0200 |
| commit | 160408f26976868480c2e792e200b7aa9c545319 (patch) | |
| tree | b49e8cd52f033cd56d81835737c8ddad42c8b80b /src | |
| parent | 5387b4543175bee9d195b24e250a0ef863a63555 (diff) | |
| parent | 72b90bff0fa0884ddeb8703b918147878c76eb8c (diff) | |
| download | raylib-160408f26976868480c2e792e200b7aa9c545319.tar.gz raylib-160408f26976868480c2e792e200b7aa9c545319.zip | |
Merge pull request #249 from RDR8/games-linux
Fixed some games. Replaced font.size with font.baseSize. Uncommented linux libs.
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 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)); |
