This commit is contained in:
thrust26 2018-06-12 20:11:29 +02:00
parent 337375a2b2
commit a9cd833975
1 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,8 @@ Genesis::Genesis(Jack jack, const Event& event, const System& system)
myFire2Event = Event::JoystickOneFire5;
}
updateAnalogPin(Five, minimumResistance);
updateAnalogPin(Five, minimumResistance); // TJ: This code is missing for the Booster Grip, so why is it here?
updateAnalogPin(Nine, minimumResistance); // TJ: Do we need this?
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@ -62,6 +63,7 @@ void Genesis::update()
Five,
(myEvent.get(myFire2Event) == 0) ? minimumResistance : maximumResistance
);
updateAnalogPin(Nine, minimumResistance);
// Mouse motion and button events
if(myControlID > -1)