diff options
| author | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-11 18:12:51 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-11 18:12:51 +0100 |
| commit | c011cfe0cb4b2b29c2e1d48b5bfd6db1d7fdc6d8 (patch) | |
| tree | 9c3b1fed55c2da1015f37df2af29e9f7b864252f /libs/imgui | |
| parent | 1ab0d5fb96624e0fb92b961fc02b3e6344126033 (diff) | |
localizations
Diffstat (limited to 'libs/imgui')
| -rw-r--r-- | libs/imgui/imgui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/imgui/imgui.cpp b/libs/imgui/imgui.cpp index d3d82d4..e42993c 100644 --- a/libs/imgui/imgui.cpp +++ b/libs/imgui/imgui.cpp @@ -16701,7 +16701,7 @@ void ImGui::LoadingIndicatorCircle(const float indicator_radius, const auto degree_offset = 2.0f * IM_PI / circle_count; for (int i = 0; i < circle_count; ++i) { const auto x = updated_indicator_radius * sin(degree_offset * i); - const auto y = updated_indicator_radius * cos(degree_offset * i); + const auto y = updated_indicator_radius * cos(degree_offset * i) + 2.0f; #define max(a,b) (((a)>(b))?(a):(b)) |
