testaudiostreamdynamicresample.c: Fixed MSVC compiler warning.
parent
dbf993d358
commit
66bcee2ca9
|
@ -93,7 +93,7 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
/* keep it looping. */
|
/* keep it looping. */
|
||||||
if (SDL_GetAudioStreamAvailable(stream) < (audio_len / 2)) {
|
if (SDL_GetAudioStreamAvailable(stream) < ((int) (audio_len / 2))) {
|
||||||
SDL_PutAudioStreamData(stream, audio_buf, audio_len);
|
SDL_PutAudioStreamData(stream, audio_buf, audio_len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue