Ryujinx/Ryujinx.Audio/ADPCM/Info.cs

10 lines
168 B
C#
Raw Normal View History

2018-06-13 21:02:14 +00:00
namespace Ryujinx.Audio.ADPCM
{
struct Info
{
public short History1;
public short History2;
public short[] Coefficients;
}
}