From 3051c3782f3854074ebb1e8e71e52db8b4917db3 Mon Sep 17 00:00:00 2001 From: saschawillems Date: Thu, 10 May 2018 17:22:42 +0200 Subject: [PATCH] Use unformated text functions --- examples/imgui/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/imgui/main.cpp b/examples/imgui/main.cpp index 158b675c..572516df 100644 --- a/examples/imgui/main.cpp +++ b/examples/imgui/main.cpp @@ -343,8 +343,8 @@ public: ImVec4 clear_color = ImColor(114, 144, 154); static float f = 0.0f; - ImGui::Text(example->title.c_str()); - ImGui::Text(device->properties.deviceName); + ImGui::TextUnformatted(example->title.c_str()); + ImGui::TextUnformatted(device->properties.deviceName); // Update frame time display if (updateFrameGraph) {