mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 03:36:39 +00:00
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.
This commit is contained in:
parent
8bb64ac69c
commit
7475e180b4
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue