this helps

This commit is contained in:
quaK 2024-10-03 19:04:53 +03:00
parent 010bdb41aa
commit 2a306385f4

View File

@ -427,6 +427,11 @@ namespace gsc
{ {
for (const auto& file : scripting::script_function_table_sort) for (const auto& file : scripting::script_function_table_sort)
{ {
if (file.first.find("/asm/") != std::string::npos)
{
continue;
}
const auto first_function = file.second.begin(); const auto first_function = file.second.begin();
for (auto i = file.second.begin(); i != file.second.end() && std::next(i) != file.second.end(); ++i) for (auto i = file.second.begin(); i != file.second.end() && std::next(i) != file.second.end(); ++i)
{ {