summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-06-06 16:34:36 +0200
committerStanislaw Halik <sthalik@misaki.pl>2024-06-06 16:35:18 +0200
commitfa424ed568dec80bc845b2f4bdf330142e2f4710 (patch)
treeb9f71b24ef92a3db574e31f5d0d9214b6020ed9e
parent802995cb75bca22e82c6e26ece600f813fcaa8a7 (diff)
b
-rw-r--r--editor/tests/hole-test.cpp2
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() }); }