Merge branch 'master' into 2.7

This commit is contained in:
Taiga
2022-05-27 23:37:00 -07:00
committed by GitHub
47 changed files with 1106 additions and 476 deletions

View File

@ -438,7 +438,7 @@ namespace cheat::feature
ImGui::TableHeadersRow();
ImGuiListClipper clipper;
clipper.Begin(entities.size());
clipper.Begin(static_cast<int>(entities.size()));
while (clipper.Step())
for (int row_n = clipper.DisplayStart; row_n < clipper.DisplayEnd; row_n++)
{
@ -1037,6 +1037,7 @@ namespace cheat::feature
}
catch (nlohmann::detail::parse_error& parseError)
{
UNREFERENCED_PARAMETER(parseError);
LOG_ERROR("Failed to parse json");
}