mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-28 11:12:21 -05:00
Move solution and projects to src
This commit is contained in:
12
src/Ryujinx.Audio/Renderer/Dsp/State/AdpcmLoopContext.cs
Normal file
12
src/Ryujinx.Audio/Renderer/Dsp/State/AdpcmLoopContext.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user