aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Objects/Vi/ISystemDisplayService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Core/OsHle/Objects/Vi/ISystemDisplayService.cs')
-rw-r--r--Ryujinx.Core/OsHle/Objects/Vi/ISystemDisplayService.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Ryujinx.Core/OsHle/Objects/Vi/ISystemDisplayService.cs b/Ryujinx.Core/OsHle/Objects/Vi/ISystemDisplayService.cs
deleted file mode 100644
index 4c83c25f..00000000
--- a/Ryujinx.Core/OsHle/Objects/Vi/ISystemDisplayService.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using Ryujinx.Core.OsHle.Ipc;
-using System.Collections.Generic;
-
-namespace Ryujinx.Core.OsHle.Objects.Vi
-{
- class ISystemDisplayService : IIpcInterface
- {
- private Dictionary<int, ServiceProcessRequest> m_Commands;
-
- public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
-
- public ISystemDisplayService()
- {
- m_Commands = new Dictionary<int, ServiceProcessRequest>()
- {
- { 2205, SetLayerZ }
- };
- }
-
- public static long SetLayerZ(ServiceCtx Context)
- {
- return 0;
- }
- }
-} \ No newline at end of file