Add missing const

This commit is contained in:
kd-11 2021-08-26 13:20:17 +03:00
parent 2ff407ac6a
commit b0e352c44e
1 changed files with 1 additions and 1 deletions

View File

@ -658,7 +658,7 @@ template<typename T> std::string FragmentProgramDecompiler::GetSRC(T src)
rsx_log.error("Indexed load with control override mask detected. Report this to developers!");
}
auto load_cmd = fmt::format("_indexed_load(i%u + %u)", m_loop_count - 1, src2.addr_reg);
const auto load_cmd = fmt::format("_indexed_load(i%u + %u)", m_loop_count - 1, src2.addr_reg);
properties.has_dynamic_register_load = true;
insert = false;