blob: aeab9a291a624903f35152cf6ddaec3d3da2c754 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.HLE.Gpu.Exceptions
{
static class GpuExceptionHelper
{
private const string CallCountExceeded = "Method call count exceeded the limit allowed per run!";
public static void ThrowCallCoundExceeded()
{
throw new GpuException(CallCountExceeded);
}
}
}
|