mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-31 06:40:33 +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;
|
||
|
}
|
||
|
}
|