Skip to content

Commit

Permalink
msg todo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikaël Fourrier committed Aug 22, 2021
1 parent 57b9f96 commit f61e801
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/config/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,14 @@ impl Settings {
let rotate = mode != StickMode::FlickOnly;
Box::new(FlickStick::new(flick, rotate))
}
StickMode::MouseRing => todo!(),
StickMode::MouseArea => todo!(),
StickMode::MouseRing => todo!("Mouse ring stick is unimplemented for now"),
StickMode::MouseArea => todo!("Mouse area stick is unimplemented for now"),
StickMode::NoMouse => Box::new(if left {
ButtonStick::left(self.left_ring_mode)
} else {
ButtonStick::right(self.right_ring_mode)
}),
StickMode::ScrollWheel => todo!(),
StickMode::ScrollWheel => todo!("Scoll wheel stick is unimplemented for now"),
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ impl Gyro {
space_mapper: match settings.gyro.space {
GyroSpace::Local => Box::new(LocalSpace::default()),
GyroSpace::WorldTurn => Box::new(WorldSpace::default()),
GyroSpace::WorldLean => todo!(),
GyroSpace::WorldLean => todo!("World Lean is unimplemented for now"),
GyroSpace::PlayerTurn => Box::new(PlayerSpace::default()),
GyroSpace::PlayerLean => todo!(),
GyroSpace::PlayerLean => todo!("Player Lean is unimplemented for now"),
},
gyromouse: GyroMouse::default(),
}
Expand Down

0 comments on commit f61e801

Please sign in to comment.