From 182d716867ae477c2b15a5332430dc2641fa1cc3 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Thu, 16 Aug 2018 20:45:00 -0300 Subject: Remove artificial call count limit for EndGl (#357) --- Ryujinx.HLE/Gpu/Exceptions/GpuException.cs | 11 ----------- Ryujinx.HLE/Gpu/Exceptions/GpuExceptionHelper.cs | 12 ------------ 2 files changed, 23 deletions(-) delete mode 100644 Ryujinx.HLE/Gpu/Exceptions/GpuException.cs delete mode 100644 Ryujinx.HLE/Gpu/Exceptions/GpuExceptionHelper.cs (limited to 'Ryujinx.HLE/Gpu/Exceptions') diff --git a/Ryujinx.HLE/Gpu/Exceptions/GpuException.cs b/Ryujinx.HLE/Gpu/Exceptions/GpuException.cs deleted file mode 100644 index c0bce5a5..00000000 --- a/Ryujinx.HLE/Gpu/Exceptions/GpuException.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System; - -namespace Ryujinx.HLE.Gpu.Exceptions -{ - class GpuException : Exception - { - public GpuException() : base() { } - - public GpuException(string ExMsg) : base(ExMsg) { } - } -} \ No newline at end of file diff --git a/Ryujinx.HLE/Gpu/Exceptions/GpuExceptionHelper.cs b/Ryujinx.HLE/Gpu/Exceptions/GpuExceptionHelper.cs deleted file mode 100644 index aeab9a29..00000000 --- a/Ryujinx.HLE/Gpu/Exceptions/GpuExceptionHelper.cs +++ /dev/null @@ -1,12 +0,0 @@ -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); - } - } -} \ No newline at end of file -- cgit v1.2.3