mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-11 21:37:17 +00:00
(GX) Add missing gx_audio_use_float - set it to false
This commit is contained in:
parent
890b7f9bcf
commit
745a36508f
@ -183,6 +183,13 @@ static size_t gx_audio_buffer_size(void *data)
|
||||
return BLOCKS * CHUNK_SIZE;
|
||||
}
|
||||
|
||||
static bool gx_audio_use_float(void *data)
|
||||
{
|
||||
/* TODO/FIXME - verify */
|
||||
(void)data;
|
||||
return false;
|
||||
}
|
||||
|
||||
const audio_driver_t audio_gx = {
|
||||
gx_audio_init,
|
||||
gx_audio_write,
|
||||
@ -190,8 +197,8 @@ const audio_driver_t audio_gx = {
|
||||
gx_audio_start,
|
||||
gx_audio_set_nonblock_state,
|
||||
gx_audio_free,
|
||||
gx_audio_use_float,
|
||||
"gx",
|
||||
gx_audio_write_avail,
|
||||
gx_audio_buffer_size,
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user