diff options
author | Mary <mary@mary.zone> | 2022-02-16 23:55:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-16 23:55:40 +0100 |
commit | 741db8e43df4b3b3d66042ada6057df72ec236ff (patch) | |
tree | e747b5ea2f38031c1a06595a772bd61235a06ce3 | |
parent | 3bd357045f7581ee10d6c86ed8049bcebe35eda0 (diff) |
amadeus: Fix PCMFloat datasource command v1 (#3127)1.1.32
Really simple copy pasta error here.
Shouldn't affect anything as float support was added at the same REV as
datasource command v2.
-rw-r--r-- | Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs b/Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs index b78d36fc..14a821ee 100644 --- a/Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs +++ b/Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs @@ -76,7 +76,7 @@ namespace Ryujinx.Audio.Renderer.Dsp.Command DataSourceHelper.WaveBufferInformation info = new DataSourceHelper.WaveBufferInformation { SourceSampleRate = SampleRate, - SampleFormat = SampleFormat.PcmInt16, + SampleFormat = SampleFormat.PcmFloat, Pitch = Pitch, DecodingBehaviour = DecodingBehaviour, ExtraParameter = 0, |