diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-07-15 00:34:12 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-07-15 00:34:12 -0300 |
| commit | 8652dbb57ca3a111c73b779a6f38ec24cc32c2f5 (patch) | |
| tree | 707b1c404c0832bcede6fd09e3be4ee2b94424aa | |
| parent | 21e590c3abe64a0cbe4e51ebcc9f4bb0f945fc00 (diff) | |
Small nit on GetAudioRendererWorkBufferSize
| -rw-r--r-- | Ryujinx.HLE/OsHle/Services/Aud/IAudioRendererManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/OsHle/Services/Aud/IAudioRendererManager.cs b/Ryujinx.HLE/OsHle/Services/Aud/IAudioRendererManager.cs index 021c3635..a71abebe 100644 --- a/Ryujinx.HLE/OsHle/Services/Aud/IAudioRendererManager.cs +++ b/Ryujinx.HLE/OsHle/Services/Aud/IAudioRendererManager.cs @@ -67,7 +67,7 @@ namespace Ryujinx.HLE.OsHle.Services.Aud ((Params.SinkCount + Params.MixCount) * 0x3C0 + Params.SampleCount * 4) * (Params.Unknown8 + 6), 64); Size += (Params.SinkCount + Params.MixCount) * 0x2C0; - Size += (Params.EffectCount + 4 * Params.VoiceCount) * 0x30 + 0x50; + Size += (Params.EffectCount + Params.VoiceCount * 4) * 0x30 + 0x50; if (IsSplitterSupported) { |
