1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-04-17 14:34:05 -05:00

Fix RevMagic on audren

This commit is contained in:
gdkchan 2018-07-15 00:42:59 -03:00
parent a48ed788bf
commit 50b706e2ba

View File

@ -18,7 +18,7 @@ namespace Ryujinx.HLE.OsHle.Services.Aud
private const int Rev = 4;
public const int RevMagic = Rev0Magic + Rev;
public const int RevMagic = Rev0Magic + (Rev << 24);
private Dictionary<int, ServiceProcessRequest> m_Commands;