Fix symbol find function.

This commit is contained in:
Skyth
2024-09-14 19:30:26 +03:00
parent fc1efc5a37
commit df78800c8d
2 changed files with 17 additions and 17 deletions

View File

@@ -113,7 +113,7 @@ int main()
for (size_t funcIdx = 0; funcIdx < functions.size(); funcIdx++)
{
if ((funcIdx % 100) == 0)
if ((funcIdx % 1000) == 0)
std::println("Recompiling functions... {}%", static_cast<float>(funcIdx) / functions.size() * 100.0f);
auto& fn = functions[funcIdx];