diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-06-26 01:09:32 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-06-26 01:10:15 -0300 |
| commit | 65105c2a3bf136202decd5ec1f5d9626d636033b (patch) | |
| tree | c877fcc5656aaeabfadd12f5cc8c5da5e72deb42 /Ryujinx.HLE/OsHle/Handles/KThread.cs | |
| parent | c81809352865a9d3be4f9ce20beea4ae39373934 (diff) | |
Implement SvcGetThreadContext3
Diffstat (limited to 'Ryujinx.HLE/OsHle/Handles/KThread.cs')
| -rw-r--r-- | Ryujinx.HLE/OsHle/Handles/KThread.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.HLE/OsHle/Handles/KThread.cs b/Ryujinx.HLE/OsHle/Handles/KThread.cs index a135bb28..3db46f3d 100644 --- a/Ryujinx.HLE/OsHle/Handles/KThread.cs +++ b/Ryujinx.HLE/OsHle/Handles/KThread.cs @@ -29,6 +29,8 @@ namespace Ryujinx.HLE.OsHle.Handles public int WaitHandle { get; set; } + public long LastPc { get; set; } + public int ThreadId => Thread.ThreadId; public KThread( |
