minor changes

improvement `ImGui::BeginGroupPanel`
fix typos
fix warnings
anti-debug bypass changes (implementation is private for now)
This commit is contained in:
CallowBlack
2022-05-26 16:15:31 +03:00
parent ab5b730e51
commit e2c9c9eae3
34 changed files with 543 additions and 453 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");
}