aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs b/src/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs
index a7fc71c9..acf358ee 100644
--- a/src/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs
@@ -8,13 +8,13 @@ namespace Ryujinx.HLE.HOS.Services.Mii
[Service("mii:u", false)]
class IStaticService : IpcService
{
- private DatabaseImpl _databaseImpl;
+ private readonly DatabaseImpl _databaseImpl;
- private bool _isSystem;
+ private readonly bool _isSystem;
public IStaticService(ServiceCtx context, bool isSystem)
{
- _isSystem = isSystem;
+ _isSystem = isSystem;
_databaseImpl = DatabaseImpl.Instance;
}
@@ -29,4 +29,4 @@ namespace Ryujinx.HLE.HOS.Services.Mii
return ResultCode.Success;
}
}
-} \ No newline at end of file
+}