4c2ab880ef
* Ryujinx.Audio: Remove BOM from files * misc: Relicense Ryujinx.Audio under the terms of the MIT license With the approvals of all the Ryujinx.Audio contributors, this commit changes Ryujinx.Audio license from LGPLv3 to MIT.
13 lines
289 B
C#
13 lines
289 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.Audio.Renderer.Dsp.State
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1, Size = 6)]
|
|
public struct AdpcmLoopContext
|
|
{
|
|
public short PredScale;
|
|
public short History0;
|
|
public short History1;
|
|
}
|
|
}
|