diff options
| author | David Reid <mackron@gmail.com> | 2018-05-21 20:39:42 +1000 |
|---|---|---|
| committer | David Reid <mackron@gmail.com> | 2018-05-21 20:39:42 +1000 |
| commit | 647c08ef4ccc1e9fbcb8a5061b4948a87a75fd39 (patch) | |
| tree | 4be4f56085be1703709a6b497f72eae1f047cc21 /src | |
| parent | f1b624d38b449cf1fc2ac6249c9559405d54915b (diff) | |
| download | raylib-647c08ef4ccc1e9fbcb8a5061b4948a87a75fd39.tar.gz raylib-647c08ef4ccc1e9fbcb8a5061b4948a87a75fd39.zip | |
Fix a copy paste typo.
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 4670b99d..7cc509f6 100644 --- a/src/audio.c +++ b/src/audio.c @@ -1344,7 +1344,7 @@ Music LoadMusicStream(const char *fileName) music->ctxType = MUSIC_AUDIO_OGG; music->loopCount = -1; // Infinite loop by default - TraceLog(LOG_DEBUG, "[%s] FLAC total samples: %i", fileName, music->totalSamples); + TraceLog(LOG_DEBUG, "[%s] OGG total samples: %i", fileName, music->totalSamples); TraceLog(LOG_DEBUG, "[%s] OGG sample rate: %i", fileName, info.sample_rate); TraceLog(LOG_DEBUG, "[%s] OGG channels: %i", fileName, info.channels); TraceLog(LOG_DEBUG, "[%s] OGG memory required: %i", fileName, info.temp_memory_required); |
