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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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);