HLE: add error checks to cellAudioInGetDeviceInfo

This commit is contained in:
Megamouse 2020-01-22 22:45:47 +01:00
parent 3e8a5c6395
commit 3f076d63e3

View File

@ -170,6 +170,11 @@ error_code cellAudioInGetDeviceInfo(u32 deviceNumber, u32 deviceIndex, vm::ptr<C
{
cellAvconfExt.todo("cellAudioInGetDeviceInfo(deviceNumber=0x%x, deviceIndex=0x%x, info=*0x%x)", deviceNumber, deviceIndex, info);
if (deviceIndex != 0 || !info)
{
return CELL_AUDIO_IN_ERROR_ILLEGAL_PARAMETER;
}
auto av_manager = g_fxo->get<avconf_manager>();
if (deviceNumber >= av_manager->devices.size())