diff --git a/ARMeilleure/Translation/DelegateInfo.cs b/ARMeilleure/Translation/DelegateInfo.cs index 9ba3b183ee..d8789d8402 100644 --- a/ARMeilleure/Translation/DelegateInfo.cs +++ b/ARMeilleure/Translation/DelegateInfo.cs @@ -16,8 +16,8 @@ namespace ARMeilleure.Translation { _dlg = dlg; - FuncPtr = Marshal.GetFunctionPointerForDelegate(_dlg); - RetType = GetOperandType(_dlg.Method.ReturnType); + FuncPtr = Marshal.GetFunctionPointerForDelegate(dlg); + RetType = GetOperandType(dlg.Method.ReturnType); } private static OperandType GetOperandType(Type type) @@ -55,4 +55,4 @@ namespace ARMeilleure.Translation } } } -} \ No newline at end of file +}