2022-12-31 06:17:44 +00:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Horizon.Sdk
|
2022-12-28 21:20:48 +00:00
|
|
|
|
{
|
|
|
|
|
static class DebugUtil
|
|
|
|
|
{
|
|
|
|
|
public static void Assert(bool condition)
|
|
|
|
|
{
|
2022-12-31 06:17:44 +00:00
|
|
|
|
Debug.Assert(condition);
|
2022-12-28 21:20:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|