Fix BiquadFilter struct
This commit is contained in:
parent
6a6aa21ec9
commit
07ac67a623
1 changed files with 3 additions and 1 deletions
|
@ -2,9 +2,11 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace Ryujinx.HLE.OsHle.Services.Aud
|
namespace Ryujinx.HLE.OsHle.Services.Aud
|
||||||
{
|
{
|
||||||
[StructLayout(LayoutKind.Sequential, Size = 0xc, Pack = 2)]
|
[StructLayout(LayoutKind.Sequential, Size = 0xc, Pack = 1)]
|
||||||
struct BiquadFilter
|
struct BiquadFilter
|
||||||
{
|
{
|
||||||
|
public byte Enable;
|
||||||
|
public byte Padding;
|
||||||
public short B0;
|
public short B0;
|
||||||
public short B1;
|
public short B1;
|
||||||
public short B2;
|
public short B2;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue