mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 20:50:18 +00:00
Addresses gdkchan feedback
This commit is contained in:
parent
3d0cfb6fc1
commit
7c59b857a6
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ namespace Ryujinx.HLE.HOS.Services.Olsc
|
||||||
return ResultCode.NullArgument;
|
return ResultCode.NullArgument;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_saveDataBackupSettingDatabase.ContainsKey(userId) && _saveDataBackupSettingDatabase[userId])
|
if (_saveDataBackupSettingDatabase.TryGetValue(userId, out bool enabled) && enabled)
|
||||||
{
|
{
|
||||||
context.ResponseData.Write((byte)1); // TODO: Determine value.
|
context.ResponseData.Write((byte)1); // TODO: Determine value.
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue