From 65105c2a3bf136202decd5ec1f5d9626d636033b Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 26 Jun 2018 01:09:32 -0300 Subject: Implement SvcGetThreadContext3 --- ChocolArm64/Events/AInstExceptionEventArgs.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'ChocolArm64/Events') diff --git a/ChocolArm64/Events/AInstExceptionEventArgs.cs b/ChocolArm64/Events/AInstExceptionEventArgs.cs index 34f90c8e..a6853ea1 100644 --- a/ChocolArm64/Events/AInstExceptionEventArgs.cs +++ b/ChocolArm64/Events/AInstExceptionEventArgs.cs @@ -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; } } } \ No newline at end of file -- cgit v1.2.3