mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-08-23 12:36:34 -05:00
Misc cleanup (#708)
* Fix typos * Remove unneeded using statements * Enforce var style more * Remove redundant qualifiers * Fix some indentation * Disable naming warnings on files with external enum names * Fix build * Mass find & replace for comments with no spacing * Standardize todo capitalization and for/if spacing
This commit is contained in:
@@ -32,8 +32,8 @@ namespace Ryujinx.HLE.HOS.Services.Ns
|
||||
{
|
||||
Logger.PrintStub(LogClass.ServiceNs);
|
||||
|
||||
//TODO: This is supposed to write a u32 array aswell.
|
||||
//It's unknown what it contains.
|
||||
// TODO: This is supposed to write a u32 array aswell.
|
||||
// It's unknown what it contains.
|
||||
context.ResponseData.Write(0);
|
||||
|
||||
return 0;
|
||||
|
@@ -1,5 +1,4 @@
|
||||
using LibHac;
|
||||
using Ryujinx.Common.Logging;
|
||||
using Ryujinx.HLE.HOS.Ipc;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
@@ -13,7 +13,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns
|
||||
{
|
||||
_commands = new Dictionary<int, ServiceProcessRequest>
|
||||
{
|
||||
//...
|
||||
// ...
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@@ -13,7 +13,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns
|
||||
{
|
||||
_commands = new Dictionary<int, ServiceProcessRequest>
|
||||
{
|
||||
//...
|
||||
// ...
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user