f3b0b4831c
* amadeus: Update to REV9 This implements all the changes made with REV9 on 12.0.0. * Address Ac_k's comments
16 lines
360 B
C#
16 lines
360 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Parameter.Effect;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Parameter.Effect
|
|
{
|
|
class LimiterParameterTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x44, Unsafe.SizeOf<LimiterParameter>());
|
|
}
|
|
}
|
|
}
|
|
|