forked from Mirror/Ryujinx
Fix audio renderer error message result code base (#3348)
This commit is contained in:
parent
7b9c4757dd
commit
89294b7772
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue