Fix compiler warning introduced in 4aa8a1c418

This commit is contained in:
The Capyloon Team 2023-05-20 02:01:56 +00:00
parent 2426a38a4d
commit da9796f7e3

View file

@ -77,7 +77,7 @@ fn compute_tick_duration(tick_actions: &ActionSequence) -> u64 {
}
},
ActionsType::Key { actions: _ } => (),
ActionsType::Wheel { actions } => todo!("Not implemented."),
ActionsType::Wheel { .. } => todo!("Not implemented."),
}
duration
}
@ -189,7 +189,7 @@ impl Handler {
}
}
},
ActionsType::Wheel { actions } => todo!("Not implemented."),
ActionsType::Wheel { .. } => todo!("Not implemented."),
}
Ok(())