diff options
| author | Alex Barney <thealexbarney@gmail.com> | 2020-02-18 04:35:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-18 22:35:47 +1100 |
| commit | 165e658f0219e1666dc83bbadb453acb22df1e39 (patch) | |
| tree | 4c11dbac891333503f673506acbfdb46276ed1f6 /Ryujinx.HLE/HOS/Horizon.cs | |
| parent | 5f6949d9b0b213e6f8fc75137c54287e088cfb8a (diff) | |
Actually use the dummy NACP for EnsureApplicationSaveData (#939)
Diffstat (limited to 'Ryujinx.HLE/HOS/Horizon.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Horizon.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Horizon.cs b/Ryujinx.HLE/HOS/Horizon.cs index f8d2ed71..8eb97ea2 100644 --- a/Ryujinx.HLE/HOS/Horizon.cs +++ b/Ryujinx.HLE/HOS/Horizon.cs @@ -688,7 +688,7 @@ namespace Ryujinx.HLE.HOS "No control file was found for this game. Using a dummy one instead. This may cause inaccuracies in some games."); } - Result rc = EnsureApplicationSaveData(Device.FileSystem.FsClient, out _, titleId, ref ControlData.Value, ref user); + Result rc = EnsureApplicationSaveData(Device.FileSystem.FsClient, out _, titleId, ref control, ref user); if (rc.IsFailure()) { |
