aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Gpu/Exceptions
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-08-16 20:45:00 -0300
committerGitHub <noreply@github.com>2018-08-16 20:45:00 -0300
commit182d716867ae477c2b15a5332430dc2641fa1cc3 (patch)
tree3b6c9829eaa1637a43fdc94df5c1788cc39eeddd /Ryujinx.HLE/Gpu/Exceptions
parent6e1a6c5b2baf0baa79d3a164167a8ffb14c99bc8 (diff)
Remove artificial call count limit for EndGl (#357)
Diffstat (limited to 'Ryujinx.HLE/Gpu/Exceptions')
-rw-r--r--Ryujinx.HLE/Gpu/Exceptions/GpuException.cs11
-rw-r--r--Ryujinx.HLE/Gpu/Exceptions/GpuExceptionHelper.cs12
2 files changed, 0 insertions, 23 deletions
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