mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 17:36:39 +00:00
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.
This commit is contained in:
parent
3bd357045f
commit
741db8e43d
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ namespace Ryujinx.Audio.Renderer.Dsp.Command
|
||||||
DataSourceHelper.WaveBufferInformation info = new DataSourceHelper.WaveBufferInformation
|
DataSourceHelper.WaveBufferInformation info = new DataSourceHelper.WaveBufferInformation
|
||||||
{
|
{
|
||||||
SourceSampleRate = SampleRate,
|
SourceSampleRate = SampleRate,
|
||||||
SampleFormat = SampleFormat.PcmInt16,
|
SampleFormat = SampleFormat.PcmFloat,
|
||||||
Pitch = Pitch,
|
Pitch = Pitch,
|
||||||
DecodingBehaviour = DecodingBehaviour,
|
DecodingBehaviour = DecodingBehaviour,
|
||||||
ExtraParameter = 0,
|
ExtraParameter = 0,
|
||||||
|
|
Loading…
Reference in a new issue