aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs b/src/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs
index 8d99721e..ae00842d 100644
--- a/src/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs
@@ -12,10 +12,10 @@ namespace Ryujinx.HLE.HOS.Services.Ngct
// If both conditions are true, it does this following code. Since we currently stub it, it's fine to don't check settings service values.
ulong bufferPosition = context.Request.PtrBuff[0].Position;
- ulong bufferSize = context.Request.PtrBuff[0].Size;
+ ulong bufferSize = context.Request.PtrBuff[0].Size;
- bool isMatch = false;
- string text = "";
+ bool isMatch = false;
+ string text = "";
if (bufferSize != 0)
{
@@ -53,11 +53,11 @@ namespace Ryujinx.HLE.HOS.Services.Ngct
// If both conditions are true, it does this following code. Since we currently stub it, it's fine to don't check settings service values.
ulong bufferPosition = context.Request.PtrBuff[0].Position;
- ulong bufferSize = context.Request.PtrBuff[0].Size;
+ ulong bufferSize = context.Request.PtrBuff[0].Size;
ulong bufferFilteredPosition = context.Request.RecvListBuff[0].Position;
- string text = "";
+ string text = "";
string textFiltered = "";
if (bufferSize != 0)
@@ -89,4 +89,4 @@ namespace Ryujinx.HLE.HOS.Services.Ngct
return ResultCode.Success;
}
}
-} \ No newline at end of file
+}