aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuminoso-256 <63971285+Luminoso-256@users.noreply.github.com>2022-11-26 19:10:42 -0600
committerGitHub <noreply@github.com>2022-11-27 01:10:42 +0000
commitcb22629ac1048960e4f318dedc43ba498debb9b3 (patch)
treebb84497ddf62addb2c5ca31897e5ecdec8fa51a7
parent6f0f99ee2b844284d00da9ef8533acfd96de08fd (diff)
HLE: fix small issue in IPsmSession (#3909)1.1.391
-rw-r--r--Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmSession.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmSession.cs b/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmSession.cs
index de40a5ac..6015c6a4 100644
--- a/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmSession.cs
+++ b/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmSession.cs
@@ -22,7 +22,7 @@ namespace Ryujinx.HLE.HOS.Services.Ptm.Psm
{
if (_stateChangeEventHandle == -1)
{
- KernelResult resultCode = context.Process.HandleTable.GenerateHandle(_stateChangeEvent.ReadableEvent, out int stateChangeEventHandle);
+ KernelResult resultCode = context.Process.HandleTable.GenerateHandle(_stateChangeEvent.ReadableEvent, out _stateChangeEventHandle);
if (resultCode != KernelResult.Success)
{