aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Events
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-06-26 01:09:32 -0300
committergdkchan <gab.dark.100@gmail.com>2018-06-26 01:10:15 -0300
commit65105c2a3bf136202decd5ec1f5d9626d636033b (patch)
treec877fcc5656aaeabfadd12f5cc8c5da5e72deb42 /ChocolArm64/Events
parentc81809352865a9d3be4f9ce20beea4ae39373934 (diff)
Implement SvcGetThreadContext3
Diffstat (limited to 'ChocolArm64/Events')
-rw-r--r--ChocolArm64/Events/AInstExceptionEventArgs.cs8
1 files changed, 5 insertions, 3 deletions
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