From cf1fe0443144aac122bdd2d4fab48e874020cf77 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 10 Jan 2021 13:50:34 +0100 Subject: [PATCH] Fixed invalid type name in bitfields --- include/lang/pattern_data.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/lang/pattern_data.hpp b/include/lang/pattern_data.hpp index 01f1f6368..d49dd45aa 100644 --- a/include/lang/pattern_data.hpp +++ b/include/lang/pattern_data.hpp @@ -786,7 +786,7 @@ namespace hex::lang { else ImGui::Text("%llu bits", entrySize); ImGui::TableNextColumn(); - ImGui::Text("%s", entryName.c_str()); + ImGui::TextColored(ImColor(0xFF9BC64D), "bits"); ImGui::TableNextColumn(); { u128 fieldValue = 0;