From 05f3e721694249a71f46cef3c87e0156b00363ee Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 1 Mar 2024 23:23:30 +0100 Subject: c --- editor/tests/pathfinding.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'editor') diff --git a/editor/tests/pathfinding.cpp b/editor/tests/pathfinding.cpp index 8dfe1589..303277c6 100644 --- a/editor/tests/pathfinding.cpp +++ b/editor/tests/pathfinding.cpp @@ -97,20 +97,24 @@ step_s pf_test::get_next_step(point from, point to) bool pf_test::handle_key(app& a, const key_event& e, bool is_down) { + (void) a; (void)e; (void)is_down; return false; } bool pf_test::handle_mouse_click(app& a, const mouse_button_event& e, bool is_down) { + (void)a; (void)e; (void)is_down; return false; } void pf_test::draw_overlay(app& a) { + (void)a; } -void pf_test::draw_ui(app& a, float menu_bar_height) +void pf_test::draw_ui(app& a, float) { + (void)a; } void pf_test::update_pre(app& a) -- cgit v1.2.3