[client] overlay: fix unsafe ImGui string handling

This commit is contained in:
Geoffrey McRae
2026-07-30 09:08:25 +10:00
parent 0738ea402a
commit 9c24acc6f9
5 changed files with 86 additions and 30 deletions

View File

@@ -75,7 +75,7 @@ static int help_render(void * udata, bool interactive, struct Rect * windowRects
else
igText("%s+%c", escapeName, handle->charcode);
igTableNextColumn();
igText(handle->description);
igTextUnformatted(handle->description, NULL);
}
igEndTable();