Change auto to uint32_t for base variable

This commit is contained in:
ApfelTeeSaft
2026-01-25 19:50:00 +01:00
committed by GitHub
parent e82a89397a
commit 60ababe76f
+1 -1
View File
@@ -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);