aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Pm
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Pm')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pm/IBootModeInterface.cs2
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs2
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs2
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pm/ResultCode.cs14
4 files changed, 10 insertions, 10 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Pm/IBootModeInterface.cs b/src/Ryujinx.HLE/HOS/Services/Pm/IBootModeInterface.cs
index 45771db6..473f7413 100644
--- a/src/Ryujinx.HLE/HOS/Services/Pm/IBootModeInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pm/IBootModeInterface.cs
@@ -5,4 +5,4 @@
{
public IBootModeInterface(ServiceCtx context) { }
}
-} \ No newline at end of file
+}
diff --git a/src/Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs b/src/Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs
index cce2967a..82190b04 100644
--- a/src/Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs
@@ -46,4 +46,4 @@ namespace Ryujinx.HLE.HOS.Services.Pm
return ResultCode.Success;
}
}
-} \ No newline at end of file
+}
diff --git a/src/Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs b/src/Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs
index b3b5595f..500d121e 100644
--- a/src/Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs
@@ -24,4 +24,4 @@ namespace Ryujinx.HLE.HOS.Services.Pm
return ResultCode.ProcessNotFound;
}
}
-} \ No newline at end of file
+}
diff --git a/src/Ryujinx.HLE/HOS/Services/Pm/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Pm/ResultCode.cs
index 92b5925e..9894cd20 100644
--- a/src/Ryujinx.HLE/HOS/Services/Pm/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pm/ResultCode.cs
@@ -2,16 +2,16 @@ namespace Ryujinx.HLE.HOS.Services.Pm
{
enum ResultCode
{
- ModuleId = 15,
+ ModuleId = 15,
ErrorCodeShift = 9,
Success = 0,
- ProcessNotFound = (1 << ErrorCodeShift) | ModuleId,
- AlreadyStarted = (2 << ErrorCodeShift) | ModuleId,
- NotTerminated = (3 << ErrorCodeShift) | ModuleId,
- DebugHookInUse = (4 << ErrorCodeShift) | ModuleId,
+ ProcessNotFound = (1 << ErrorCodeShift) | ModuleId,
+ AlreadyStarted = (2 << ErrorCodeShift) | ModuleId,
+ NotTerminated = (3 << ErrorCodeShift) | ModuleId,
+ DebugHookInUse = (4 << ErrorCodeShift) | ModuleId,
ApplicationRunning = (5 << ErrorCodeShift) | ModuleId,
- InvalidSize = (6 << ErrorCodeShift) | ModuleId,
+ InvalidSize = (6 << ErrorCodeShift) | ModuleId,
}
-} \ No newline at end of file
+}