Fixed warnings + readme

This commit is contained in:
omar
2018-06-16 10:23:11 +02:00
parent b5d385824d
commit 40845852b9
2 changed files with 3 additions and 2 deletions

View File

@ -2254,6 +2254,7 @@ void ImGui::MarkItemValueChanged(ImGuiID id)
{
// This marking is solely to be able to provide info for IsItemDeactivatedAfterChange().
// ActiveId might have been released by the time we call this (as in the typical press/release button behavior) but still need need to fill the data.
(void)id; // Avoid unused variable warnings when asserts are compiled out.
ImGuiContext& g = *GImGui;
IM_ASSERT(g.ActiveId == id || g.ActiveId == 0);
g.ActiveIdValueChanged = true;