From 507c42024ef18f0d985e699f63c9a014d6f93d46 Mon Sep 17 00:00:00 2001 From: LukeFZ <17146677+LukeFZ@users.noreply.github.com> Date: Fri, 13 Dec 2024 20:58:41 +0100 Subject: [PATCH] Fix loading of 32-Bit binaries by removing shadowed Bits property --- Il2CppInspector.Common/FileFormatStreams/FileFormatStream.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Il2CppInspector.Common/FileFormatStreams/FileFormatStream.cs b/Il2CppInspector.Common/FileFormatStreams/FileFormatStream.cs index 22a61f1..0cb92e4 100644 --- a/Il2CppInspector.Common/FileFormatStreams/FileFormatStream.cs +++ b/Il2CppInspector.Common/FileFormatStreams/FileFormatStream.cs @@ -207,8 +207,6 @@ namespace Il2CppInspector public virtual string Arch => throw new NotImplementedException(); - public virtual int Bits => throw new NotImplementedException(); - // Extra parameters to be passed to a loader protected LoadOptions LoadOptions;