aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-04-04 19:29:34 -0300
committergdkchan <gab.dark.100@gmail.com>2018-04-04 19:29:34 -0300
commita3d6baab91de9ea7aa8e33b696c652da5c10ca15 (patch)
treea7d968903b8124b02ea9141320a9c609c42f6ccc
parent836a003c8e092653d4fdf9c83df2b7f7401717d2 (diff)
Remove useless spacing
-rw-r--r--Ryujinx.Core/OsHle/Process.cs4
-rw-r--r--Ryujinx.Core/OsHle/Services/IpcService.cs2
2 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.Core/OsHle/Process.cs b/Ryujinx.Core/OsHle/Process.cs
index 1c31d3e0..cda921be 100644
--- a/Ryujinx.Core/OsHle/Process.cs
+++ b/Ryujinx.Core/OsHle/Process.cs
@@ -123,7 +123,7 @@ namespace Ryujinx.Core.OsHle
MemoryRegions.MainStackAddress,
MemoryRegions.MainStackSize,
MemoryType.Normal);
-
+
long StackTop = MemoryRegions.MainStackAddress + MemoryRegions.MainStackSize;
int Handle = MakeThread(Executables[0].ImageBase, StackTop, 0, 0, 0);
@@ -254,7 +254,7 @@ namespace Ryujinx.Core.OsHle
if (e.Position >= Executables[Index].ImageBase)
{
NsoName = $"{(e.Position - Executables[Index].ImageBase):x16}";
-
+
break;
}
}
diff --git a/Ryujinx.Core/OsHle/Services/IpcService.cs b/Ryujinx.Core/OsHle/Services/IpcService.cs
index 33300dec..69570bea 100644
--- a/Ryujinx.Core/OsHle/Services/IpcService.cs
+++ b/Ryujinx.Core/OsHle/Services/IpcService.cs
@@ -14,7 +14,7 @@ namespace Ryujinx.Core.OsHle.Services
private int SelfId;
- private bool IsDomain;
+ private bool IsDomain;
public IpcService()
{