diff --git a/XenonRecomp/recompiler.cpp b/XenonRecomp/recompiler.cpp index 8bd271d..ff25a30 100644 --- a/XenonRecomp/recompiler.cpp +++ b/XenonRecomp/recompiler.cpp @@ -2300,7 +2300,7 @@ bool Recompiler::Recompile(const RecompileArgs& args) bool Recompiler::Recompile(const Function& fn) { - auto base = fn.base; + uint32_t base = fn.base; auto end = base + fn.size; auto* data = (uint32_t*)image.Find(base);