Skip to content

Commit

Permalink
Fix Format String issue
Browse files Browse the repository at this point in the history
  • Loading branch information
m10653 committed Dec 30, 2023
1 parent 46de067 commit b65a5db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glass/src/libnt/native/cpp/NetworkTablesProvider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ void NetworkTablesProvider::DisplayMenu() {
if (typeEntry) {
ImGui::SameLine();
ImGui::PushStyleColor(ImGuiCol_Text, IM_COL32(96, 96, 96, 255));
ImGui::Text(typeEntry->stringVal.c_str());
ImGui::Text("%s", typeEntry->stringVal.c_str());
ImGui::PopStyleColor();
ImGui::SameLine();
ImGui::Dummy(ImVec2(10.0f, 0.0f));
Expand Down

0 comments on commit b65a5db

Please sign in to comment.