diff options
| author | Thog <me@thog.eu> | 2020-03-17 23:43:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-18 09:43:47 +1100 |
| commit | 7475e180b4344fa2cf60243d8257304871fad24a (patch) | |
| tree | 84c3ebe09a478cc5a4a5a116602ab1e741b9ff3d /Ryujinx.HLE/HOS | |
| parent | 8bb64ac69c82d55dbb0ef25c472a640fe2d5ba18 (diff) | |
audren: Accept REV8 (#993)
REV8 only added changes on performance buffer and wavebuffer dsp command
generation.
As we don't support any of those, we can just increment the revision
number for now.
Diffstat (limited to 'Ryujinx.HLE/HOS')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager/Types/AudioRendererConsts.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager/Types/AudioRendererConsts.cs b/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager/Types/AudioRendererConsts.cs index 7e8b89bd..864bda0d 100644 --- a/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager/Types/AudioRendererConsts.cs +++ b/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager/Types/AudioRendererConsts.cs @@ -3,7 +3,7 @@ namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager static class AudioRendererConsts { // Revision Consts - public const int Revision = 7; + public const int Revision = 8; public const int Rev0Magic = ('R' << 0) | ('E' << 8) | ('V' << 16) | ('0' << 24); public const int RevMagic = Rev0Magic + (Revision << 24); |
