mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 10:19:59 +00:00
Send the correct RequestUpdateAudioRenderer revision in the output header (#587)
* We should be returning our revision instead of what is requested. Hardware test on a 5.1.0 console * Added sysversion comment
This commit is contained in:
parent
838724c588
commit
c9e821e93e
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ private:
|
||||||
UpdateDataHeader() {}
|
UpdateDataHeader() {}
|
||||||
|
|
||||||
UpdateDataHeader(const AudioRendererParameter& config) {
|
UpdateDataHeader(const AudioRendererParameter& config) {
|
||||||
revision = config.revision;
|
revision = Common::MakeMagic('R', 'E', 'V', '4'); // 5.1.0 Revision
|
||||||
behavior_size = 0xb0;
|
behavior_size = 0xb0;
|
||||||
memory_pools_size = (config.effect_count + (config.voice_count * 4)) * 0x10;
|
memory_pools_size = (config.effect_count + (config.voice_count * 4)) * 0x10;
|
||||||
voices_size = config.voice_count * 0x10;
|
voices_size = config.voice_count * 0x10;
|
||||||
|
|
Loading…
Reference in a new issue