Skip to content
Snippets Groups Projects
Commit a74b4e3c authored by ja3-saxby's avatar ja3-saxby
Browse files

Change accelero sensitivity back down to 300

parent 650d0b1d
Branches
Tags
No related merge requests found
......@@ -406,10 +406,10 @@ void start_new_game() {
* read accelerometer manually for more controlled movement
* than what is available from gesture events
*/
if (UBIT.accelerometer.getX() <= -200) {
if (UBIT.accelerometer.getX() <= -300) {
move_command = -1;
}
if (UBIT.accelerometer.getX() >= +200) {
if (UBIT.accelerometer.getX() >= +300) {
move_command = +1;
}
// take note of any move requests from the player
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment