mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-27 16:57:52 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
17 lines
415 B
C#
17 lines
415 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Parameter;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer
|
|
{
|
|
class EffectOutStatusTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x10, Unsafe.SizeOf<EffectOutStatusVersion1>());
|
|
Assert.AreEqual(0x90, Unsafe.SizeOf<EffectOutStatusVersion2>());
|
|
}
|
|
}
|
|
}
|