Small fix

This commit is contained in:
fed 2023-02-28 19:17:57 +01:00
parent a3e7ad1da3
commit 09321c89c9

View File

@ -354,7 +354,7 @@ namespace ui_scripting
ShellExecuteA(nullptr, "open", link->second.data(), nullptr, nullptr, SW_SHOWNORMAL);
};
lua["string"]["escapelocalization"] = [](const game&, const std::string& str)
lua["string"]["escapelocalization"] = [](const std::string& str)
{
return "\x1F"s.append(str);
};