Skip to content

Commit

Permalink
default value of dishCacheSelector should be null
Browse files Browse the repository at this point in the history
  • Loading branch information
LotP1 committed Dec 14, 2024
1 parent 5b67d3d commit 605b422
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Ryujinx.HLE/Loaders/Processes/ProcessLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public bool LoadNxo(string path)
dummyExeFs.GetNpdm(),
nacpData,
diskCacheEnabled: false,
diskCacheSelector: string.Empty,
diskCacheSelector: null,
allowCodeMemoryForJit: true,
programName,
programId,
Expand Down
2 changes: 1 addition & 1 deletion src/Ryujinx.HLE/Loaders/Processes/ProcessLoaderHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public static bool LoadKip(KernelContext context, KipExecutable kip)
string.Empty,
string.Empty,
false,
string.Empty,
null,
codeAddress,
codeSize);

Expand Down

0 comments on commit 605b422

Please sign in to comment.