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:
parent
fec09e37ab
commit
08b1dd1035
2 changed files with 6 additions and 6 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue