From 741db8e43df4b3b3d66042ada6057df72ec236ff Mon Sep 17 00:00:00 2001 From: Mary Date: Wed, 16 Feb 2022 23:55:40 +0100 Subject: [PATCH] amadeus: Fix PCMFloat datasource command v1 (#3127) Really simple copy pasta error here. Shouldn't affect anything as float support was added at the same REV as datasource command v2. --- .../Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs b/Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs index b78d36fc7..14a821ee7 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,