mirror of
https://github.com/ocornut/imgui.git
synced 2026-03-21 16:09:43 +00:00
Version number 1.43 WIP
Bits
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user