diff --git a/source/Indy.IL2CPU/Engine.cs b/source/Indy.IL2CPU/Engine.cs index e201d99f0..5aaa71e80 100644 --- a/source/Indy.IL2CPU/Engine.cs +++ b/source/Indy.IL2CPU/Engine.cs @@ -11,9 +11,9 @@ using Mono.Cecil.Cil; namespace Indy.IL2CPU { public class Engine { private OpCodeMap mMap = new OpCodeMap(); - public void Execute(string assembly, string opAssembly) { + public void Execute(string aAssembly, string opAssembly) { mMap.LoadOpMapFromAssembly(opAssembly); - AssemblyDefinition xAD = AssemblyFactory.GetAssembly(assembly); + AssemblyDefinition xAD = AssemblyFactory.GetAssembly(aAssembly); if (xAD.EntryPoint == null) throw new NotSupportedException("Libraries are not yet supported!"); foreach (Instruction xInstruction in xAD.EntryPoint.Body.Instructions) {