소스 검색

ColorEdit: fixed weird ternary pattern that makes some compiler warning (fair)

omar 8 년 전
부모
커밋
479e532f18
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      imgui.cpp

+ 4 - 1
imgui.cpp

@@ -9301,7 +9301,10 @@ static void ColorEditOptionsPopup(ImGuiColorEditFlags flags, float* col)
         sprintf(buf, "(%d,%d,%d,%d)", cr, cg, cb, ca);
         if (ImGui::Selectable(buf))
             ImGui::SetClipboardText(buf);
-        sprintf(buf, (flags & ImGuiColorEditFlags_NoAlpha) ? "0x%02X%02X%02X" : "0x%02X%02X%02X%02X", cr, cg, cb, ca);
+        if (flags & ImGuiColorEditFlags_NoAlpha)
+            sprintf(buf, "0x%02X%02X%02X", cr, cg, cb);
+        else
+            sprintf(buf, "0x%02X%02X%02X%02X", cr, cg, cb, ca);
         if (ImGui::Selectable(buf))
             ImGui::SetClipboardText(buf);
         ImGui::EndPopup();