mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-02 02:02:26 -07:00
Implement SvcGetThreadContext3
This commit is contained in:
@@ -4,11 +4,13 @@ namespace ChocolArm64.Events
|
||||
{
|
||||
public class AInstExceptionEventArgs : EventArgs
|
||||
{
|
||||
public int Id { get; private set; }
|
||||
public long Position { get; private set; }
|
||||
public int Id { get; private set; }
|
||||
|
||||
public AInstExceptionEventArgs(int Id)
|
||||
public AInstExceptionEventArgs(long Position, int Id)
|
||||
{
|
||||
this.Id = Id;
|
||||
this.Position = Position;
|
||||
this.Id = Id;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user