mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-14 07:37:04 +00:00
misc: chore: Discard unused parameters
This commit is contained in:
parent
9c37a557dd
commit
378dc33cca
41 changed files with 96 additions and 96 deletions
|
|
@ -63,7 +63,7 @@ namespace Ryujinx.HLE.FileSystem
|
|||
{
|
||||
var romfsStream = new FileStream(fileName, FileMode.Open, FileAccess.Read);
|
||||
|
||||
_romFsByPid.AddOrUpdate(pid, romfsStream, (pid, oldStream) =>
|
||||
_romFsByPid.AddOrUpdate(pid, romfsStream, (_, oldStream) =>
|
||||
{
|
||||
oldStream.Close();
|
||||
|
||||
|
|
@ -73,7 +73,7 @@ namespace Ryujinx.HLE.FileSystem
|
|||
|
||||
public void SetRomFs(ulong pid, Stream romfsStream)
|
||||
{
|
||||
_romFsByPid.AddOrUpdate(pid, romfsStream, (pid, oldStream) =>
|
||||
_romFsByPid.AddOrUpdate(pid, romfsStream, (_, oldStream) =>
|
||||
{
|
||||
oldStream.Close();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue