1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-09-24 19:48:34 +02:00

Warning fix in demo code

This commit is contained in:
ocornut 2015-03-30 21:16:24 +01:00
parent 9d16b85ed2
commit 0a31531f44

View File

@ -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))
{