Bugfix: the command for steering left on a gamepad could not

be changed anymore.


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@2835 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2009-01-05 01:12:59 +00:00
parent 161605ceb0
commit e7bba5bdd2

View File

@ -1124,6 +1124,9 @@ void UserConfig::setInput(int player_index, KartAction ka, const Input &input)
{
for(int i=KA_FIRST; i<=KA_LAST; i++)
{
// Don't use the stored value for KA_LEFT, otherwise it's not possible
// to change the left axis for a gamepad anymore.
if(i==KA_LEFT) continue;
Input last_inp = m_last_input_configuration[device_name].m_input[(KartAction)i];
if(last_inp.type==Input::IT_STICKBUTTON ||
last_inp.type==Input::IT_STICKHAT ||