mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2026-01-01 15:07:17 +00:00
16 lines
362 B
C#
16 lines
362 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Parameter.Performance;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Parameter
|
|
{
|
|
class PerformanceOutStatusTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x10, Unsafe.SizeOf<PerformanceOutStatus>());
|
|
}
|
|
}
|
|
}
|