fix compile warnings (#175)

This commit is contained in:
No0ne
2024-07-27 02:00:39 +02:00
committed by GitHub
parent 8ef1545729
commit f644a70dd7
2 changed files with 2 additions and 1 deletions

View File

@@ -119,6 +119,7 @@ void ph_ps2_mouse_send_rel(s8 x, s8 y) {
void ph_ps2_mouse_send_wheel(s8 h, s8 v) {
if (PH_O_IS_MOUSE_PS2) {
(void)h; // as far as I know there is no standard way for horizontal scrolling
ms_send_movement(ph_ps2_mouse_buttons, 0, 0, v);
}
}