From ada9f4acd7a54bb53041f6a778fa172455e8c685 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Sat, 12 Mar 2022 17:55:45 +0100 Subject: [PATCH] addresses gdkchan feedback --- Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs b/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs index 7aa7864a0..c70134c51 100644 --- a/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs +++ b/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs @@ -18,7 +18,7 @@ namespace Ryujinx.HLE.HOS.Services.Olsc public ResultCode Initialize(ServiceCtx context) { // NOTE: Service call arp:r GetApplicationInstanceUnregistrationNotifier with the pid and initialize some internal struct. - // Since we will not support online savedata backup. It's fine to stub it for now. + // Since we will not support online savedata backup, it's fine to stub it for now. _saveDataBackupSettingDatabase = new Dictionary(); @@ -54,7 +54,7 @@ namespace Ryujinx.HLE.HOS.Services.Olsc context.ResponseData.Write((byte)2); // TODO: Determine value. } - // NOTE: Since we will not support online savedata backup. It's fine to stub it for now. + // NOTE: Since we will not support online savedata backup, it's fine to stub it for now. Logger.Stub?.PrintStub(LogClass.ServiceOlsc, new { userId }); @@ -80,7 +80,7 @@ namespace Ryujinx.HLE.HOS.Services.Olsc _saveDataBackupSettingDatabase[userId] = saveDataBackupSettingEnabled; - // NOTE: Since we will not support online savedata backup. It's fine to stub it for now. + // NOTE: Since we will not support online savedata backup, it's fine to stub it for now. Logger.Stub?.PrintStub(LogClass.ServiceOlsc, new { userId, saveDataBackupSettingEnabled });