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