diff options
author | bunnei <bunneidev@gmail.com> | 2020-03-29 04:08:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-29 04:08:19 +0200 |
commit | 5e2f8e30e749fcda70889073736a132918ff8310 (patch) | |
tree | b16cf941810e0ad64ec4dca9d9e5ecb24f825b99 /src | |
parent | Merge pull request #3562 from perillamint/vrsvc (diff) | |
parent | audio_core: Accept Audren REV8 (diff) | |
download | yuzu-5e2f8e30e749fcda70889073736a132918ff8310.tar yuzu-5e2f8e30e749fcda70889073736a132918ff8310.tar.gz yuzu-5e2f8e30e749fcda70889073736a132918ff8310.tar.bz2 yuzu-5e2f8e30e749fcda70889073736a132918ff8310.tar.lz yuzu-5e2f8e30e749fcda70889073736a132918ff8310.tar.xz yuzu-5e2f8e30e749fcda70889073736a132918ff8310.tar.zst yuzu-5e2f8e30e749fcda70889073736a132918ff8310.zip |
Diffstat (limited to '')
-rw-r--r-- | src/audio_core/audio_renderer.h | 2 |
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; |