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

Fixed warning when builidng with IMGUI_DISABLE_DEBUG_TOOLS.

This commit is contained in:
ocornut 2023-09-14 18:37:30 +02:00
parent 779568bb38
commit 223b19f116

View File

@ -6792,7 +6792,7 @@ void ImGui::DebugNodeTypingSelectState(ImGuiTypingSelectState* data)
Text("SingleCharMode = %d, Size = %d, Lock = %d", data->Request.SingleCharMode, data->Request.SingleCharSize, data->SingleCharModeLock);
Text("LastRequest = time: %.2f, frame: %d", data->LastRequestTime, data->LastRequestFrame);
#else
IM_UNUSED(storage);
IM_UNUSED(data);
#endif
}