mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 20:46:43 +00:00
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;
|
||
|
}
|
||
|
}
|