mirror of
https://github.com/raysan5/raylib.git
synced 2025-11-23 18:46:20 +00:00
Fix warnings in raylib build (#2084)
This commit is contained in:
@@ -1697,7 +1697,7 @@ void UpdateMusicStream(Music music)
|
||||
|
||||
// TODO: Get the framesLeft using framesProcessed... but first, get total frames processed correctly...
|
||||
//ma_uint32 frameSizeInBytes = ma_get_bytes_per_sample(music.stream.buffer->dsp.formatConverterIn.config.formatIn)*music.stream.buffer->dsp.formatConverterIn.config.channels;
|
||||
int framesLeft = music.frameCount - music.stream.buffer->framesProcessed;
|
||||
unsigned int framesLeft = music.frameCount - music.stream.buffer->framesProcessed;
|
||||
|
||||
while (IsAudioStreamProcessed(music.stream))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user