mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-10 02:36:27 +02:00
15 lines
338 B
C#
15 lines
338 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Parameter;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Parameter
|
|
{
|
|
class MixParameterTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x930, Unsafe.SizeOf<MixParameter>());
|
|
}
|
|
}
|
|
}
|