Fix audio renderer error message result code base (#3348)

This commit is contained in:
gdkchan 2022-05-18 19:59:27 -03:00 committed by GitHub
parent 7b9c4757dd
commit 89294b7772
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,7 +83,7 @@ namespace Ryujinx.HLE.HOS.Services.Audio.AudioRenderer
}
else
{
Logger.Error?.Print(LogClass.ServiceAudio, $"Error while processing renderer update: 0x{result}");
Logger.Error?.Print(LogClass.ServiceAudio, $"Error while processing renderer update: 0x{(int)result:X}");
}
return result;