default value of dishCacheSelector should be null

This commit is contained in:
LotP1 2024-12-14 15:01:33 +01:00
parent b5604311cb
commit e0acefeeef
2 changed files with 2 additions and 2 deletions

View file

@ -212,7 +212,7 @@ namespace Ryujinx.HLE.Loaders.Processes
dummyExeFs.GetNpdm(), dummyExeFs.GetNpdm(),
nacpData, nacpData,
diskCacheEnabled: false, diskCacheEnabled: false,
diskCacheSelector: string.Empty, diskCacheSelector: null,
allowCodeMemoryForJit: true, allowCodeMemoryForJit: true,
programName, programName,
programId, programId,

View file

@ -186,7 +186,7 @@ namespace Ryujinx.HLE.Loaders.Processes
string.Empty, string.Empty,
string.Empty, string.Empty,
false, false,
string.Empty, null,
codeAddress, codeAddress,
codeSize); codeSize);