aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormaficccc@gmail.com <maficccc@gmail.com>2018-03-16 18:17:58 +0100
committerMartinfx <maficccc@gmail.com>2018-04-02 13:30:20 +0200
commit03ca9508bfdf594e7f8cbbdb9312d533549b6bde (patch)
tree7a3b6002587ab593c3c4135875afc6858a48c9f4 /src
parent44eedf235d5530bf603e537afd5e2479160edf91 (diff)
downloadraylib-03ca9508bfdf594e7f8cbbdb9312d533549b6bde.tar.gz
raylib-03ca9508bfdf594e7f8cbbdb9312d533549b6bde.zip
Fix Dead initialization
Diffstat (limited to 'src')
-rw-r--r--src/audio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio.c b/src/audio.c
index baa5256f..1fcf6f91 100644
--- a/src/audio.c
+++ b/src/audio.c
@@ -1553,7 +1553,7 @@ void UpdateMusicStream(Music music)
case MUSIC_AUDIO_OGG:
{
// NOTE: Returns the number of samples to process (be careful! we ask for number of shorts!)
- int numSamplesOgg = stb_vorbis_get_samples_short_interleaved(music->ctxOgg, music->stream.channels, (short *)pcm, samplesCount*music->stream.channels);
+ stb_vorbis_get_samples_short_interleaved(music->ctxOgg, music->stream.channels, (short *)pcm, samplesCount*music->stream.channels);
} break;
#if defined(SUPPORT_FILEFORMAT_FLAC)