From d16db6f1f51397f70a942221fe136eef99a39a0d Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Tue, 16 Jun 2020 23:07:42 +0200 Subject: [PATCH] X64: Fix R8 unused compile warning --- Il2CppInspector.Common/Architectures/Il2CppBinaryX64.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Il2CppInspector.Common/Architectures/Il2CppBinaryX64.cs b/Il2CppInspector.Common/Architectures/Il2CppBinaryX64.cs index 58a4657..57bfc68 100644 --- a/Il2CppInspector.Common/Architectures/Il2CppBinaryX64.cs +++ b/Il2CppInspector.Common/Architectures/Il2CppBinaryX64.cs @@ -102,7 +102,7 @@ namespace Il2CppInspector var pushSize = 2; // the length of a PUSH instruction with a 64-bit register var offset = 0; - int RAX = 0, RBX = 3, RCX = 1, RDX = 2, RSI = 6, RDI = 7, R8 = 8; + int RAX = 0, RBX = 3, RCX = 1, RDX = 2, RSI = 6, RDI = 7; // R8 = 8 ulong pCgr = 0; // the point to the code registration function