1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

Silence a warning

This commit is contained in:
Jesse Talavera-Greenberg 2023-06-16 13:14:26 -04:00 committed by LibretroAdmin
parent 972c539869
commit 7d2256f92c

View File

@ -225,7 +225,7 @@ static int wasapi_microphone_read_buffered(
/* Now that we have samples available, let's give them to the core */
bytes_read = MIN(buffer_size, bytes_available);
bytes_read = MIN((int)buffer_size, bytes_available);
fifo_read(microphone->buffer, buffer, bytes_read);
/* Read data from the sample queue and store it in the provided buffer */