mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 21:26:39 +00:00
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.
12 lines
289 B
C#
12 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;
|
|
}
|
|
}
|