diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-06-06 16:34:36 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-06-06 16:35:18 +0200 |
commit | fa424ed568dec80bc845b2f4bdf330142e2f4710 (patch) | |
tree | b9f71b24ef92a3db574e31f5d0d9214b6020ed9e | |
parent | 802995cb75bca22e82c6e26ece600f813fcaa8a7 (diff) |
b
-rw-r--r-- | editor/tests/hole-test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/tests/hole-test.cpp b/editor/tests/hole-test.cpp index 2e7533b9..07c0b093 100644 --- a/editor/tests/hole-test.cpp +++ b/editor/tests/hole-test.cpp @@ -40,7 +40,7 @@ struct hole_test final : base_test bool hole_test::handle_key(app&, const key_event&, bool) { return false; } bool hole_test::handle_mouse_click(app&, const mouse_button_event&, bool) { return false; } bool hole_test::handle_mouse_move(app&, const mouse_move_event&) { return false; } -void hole_test::draw_overlay(app& a) {} +void hole_test::draw_overlay(app&) {} constexpr ImVec2 to_imvec2(Vector2 val) { return {val.x(), val.y()}; } uint32_t to_color(Color4 val) { return ImGui::ColorConvertFloat4ToU32({ val.r(), val.g(), val.b(), val.a() }); } |