mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-14 01:00:41 +00:00
Warning fix in demo code
This commit is contained in:
parent
9d16b85ed2
commit
0a31531f44
1 changed files with 1 additions and 1 deletions
|
@ -9502,7 +9502,7 @@ void ImGui::ShowTestWindow(bool* opened)
|
|||
ImGui::BeginPopup(&popup_open);
|
||||
ImGui::Text("Aquarium");
|
||||
ImGui::Separator();
|
||||
for (size_t i = 0; i < IM_ARRAYSIZE(fishes); i++)
|
||||
for (int i = 0; i < IM_ARRAYSIZE(fishes); i++)
|
||||
{
|
||||
if (ImGui::Selectable(fishes[i], false))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue