summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFearlessTobi <thm.frey@gmail.com>2020-03-23 03:07:14 +0100
committerFearlessTobi <thm.frey@gmail.com>2020-03-23 03:07:14 +0100
commit5d3b2284090678a96175d04ce9d972a8297d9a6d (patch)
tree3b299212b2ffa8ebd149aff37d4e7954a2243c31 /src
parente5bb5d13c4227e8a448975f2920950cd32ba79ea (diff)
audio_core: Accept Audren REV8
According to Ryujinx, 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 'src')
-rw-r--r--src/audio_core/audio_renderer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/audio_renderer.h b/src/audio_core/audio_renderer.h
index be1b019f1..c0fae669e 100644
--- a/src/audio_core/audio_renderer.h
+++ b/src/audio_core/audio_renderer.h
@@ -189,7 +189,7 @@ struct UpdateDataHeader {
UpdateDataHeader() {}
explicit UpdateDataHeader(const AudioRendererParameter& config) {
- revision = Common::MakeMagic('R', 'E', 'V', '4'); // 5.1.0 Revision
+ revision = Common::MakeMagic('R', 'E', 'V', '8'); // 9.2.0 Revision
behavior_size = 0xb0;
memory_pools_size = (config.effect_count + (config.voice_count * 4)) * 0x10;
voices_size = config.voice_count * 0x10;