fix unsafe cstr usage in flag editor, remove stray backslash

This commit is contained in:
CraftyBoss
2026-04-23 23:40:20 -07:00
parent ca798049b3
commit 1c00e2cdde
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -1491,11 +1491,11 @@ namespace dusk {
}
ImGui::TableNextColumn();
ImGui::Text(e.flagName.c_str());
ImGuiStringViewText(e.flagName);
ImGui::TableNextColumn();
ImGui::Text(e.location.c_str());
ImGuiStringViewText(e.location);
ImGui::TableNextColumn();
ImGui::Text(e.description.c_str());
ImGuiStringViewText(e.description);
}
ImGui::EndTable();
}