mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:38:34 +00:00
9 lines
538 B
C#
9 lines
538 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
|
|||
|
{
|
|||
|
static class AudioRendererCommon
|
|||
|
{
|
|||
|
public static bool CheckValidRevision(AudioRendererParameter parameters) => GetRevisionVersion(parameters.Revision) <= AudioRendererConsts.Revision;
|
|||
|
public static bool CheckFeatureSupported(int revision, int supportedRevision) => revision >= supportedRevision;
|
|||
|
public static int GetRevisionVersion(int revision) => (revision - AudioRendererConsts.Rev0Magic) >> 24;
|
|||
|
}
|
|||
|
}
|