From 2ee77aa6be1403eb13bfa55990af5d78a2e035cf Mon Sep 17 00:00:00 2001 From: Giuseppe Barbieri Date: Mon, 20 Feb 2023 14:43:40 +0100 Subject: [PATCH] Missing closing parenthesis in debug popup log (#6177) --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index a1229d87f..e5553e12d 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -9990,7 +9990,7 @@ void ImGui::OpenPopup(const char* str_id, ImGuiPopupFlags popup_flags) { ImGuiContext& g = *GImGui; ImGuiID id = g.CurrentWindow->GetID(str_id); - IMGUI_DEBUG_LOG_POPUP("[popup] OpenPopup(\"%s\" -> 0x%08X\n", str_id, id); + IMGUI_DEBUG_LOG_POPUP("[popup] OpenPopup(\"%s\" -> 0x%08X)\n", str_id, id); OpenPopupEx(id, popup_flags); }