1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-02-06 04:20:08 +00:00

Version number 1.43 WIP

Bits
This commit is contained in:
ocornut 2015-07-08 17:08:37 -06:00
parent fec09e37ab
commit 08b1dd1035
2 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
// ImGui library v1.42
// ImGui library v1.43 WIP
// See ImGui::ShowTestWindow() for sample code.
// Read 'Programmer guide' below for notes on how to setup ImGui in your codebase.
// Get latest version at https://github.com/ocornut/imgui
@ -5725,7 +5725,7 @@ void ImGui::PushID(const void* ptr_id)
window->IDStack.push_back(window->GetID(ptr_id));
}
void ImGui::PushID(const int int_id)
void ImGui::PushID(int int_id)
{
const void* ptr_id = (void*)(intptr_t)int_id;
ImGuiWindow* window = GetCurrentWindow();