mirror of
https://github.com/libretro/RetroArch
synced 2025-04-07 13:23:32 +00:00
Fix incorrect log messages
This commit is contained in:
parent
6ebd4e139e
commit
86fdca5e68
@ -410,10 +410,10 @@ static IAudioClient *wasapi_init_client_ex(IMMDevice *device,
|
|||||||
if (hr != AUDCLNT_E_UNSUPPORTED_FORMAT)
|
if (hr != AUDCLNT_E_UNSUPPORTED_FORMAT)
|
||||||
{
|
{
|
||||||
WASAPI_WARN(hr != AUDCLNT_E_DEVICE_IN_USE,
|
WASAPI_WARN(hr != AUDCLNT_E_DEVICE_IN_USE,
|
||||||
"Exclusive mode disabled", goto error);
|
"Device already in use", goto error);
|
||||||
|
|
||||||
WASAPI_WARN(hr != AUDCLNT_E_EXCLUSIVE_MODE_NOT_ALLOWED,
|
WASAPI_WARN(hr != AUDCLNT_E_EXCLUSIVE_MODE_NOT_ALLOWED,
|
||||||
"Device allready in use", goto error);
|
"Exclusive mode disabled", goto error);
|
||||||
|
|
||||||
i = 2; /* break from outer loop too */
|
i = 2; /* break from outer loop too */
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user