This commit is contained in:
Crispy 2025-04-03 14:02:12 +02:00
parent 7800e8d5fe
commit 3fdcb50694

View file

@ -103,7 +103,6 @@ type InputMap = BTreeMap<ActionId, Vec<Binding>>;
pub struct Input {
bindings: [Vec<Binding>; ActionId::SIZE],
states: [BindingState; ActionId::SIZE],
#[serde(skip)]
editing_binding: Option<(ActionId, usize, BindingEdit)>,
}
@ -295,8 +294,8 @@ pub struct Binding {
impl From<InputMap> for Input {
fn from(value: InputMap) -> Self {
let mut new = Self::default();
for (action, saved_bindings) in value {
new.bindings[action as usize] = saved_bindings;
for (action, loaded_bindings) in value {
new.bindings[action as usize] = loaded_bindings;
}
new
}