mirror of
https://github.com/OpenMW/openmw.git
synced 2025-05-01 07:11:23 +00:00
Fixed error when downgrading openmw versions
This commit is contained in:
parent
95219a7936
commit
e076e8a9bd
1 changed files with 12 additions and 4 deletions
8
extern/oics/ICSInputControlSystem.cpp
vendored
8
extern/oics/ICSInputControlSystem.cpp
vendored
|
@ -581,6 +581,8 @@ namespace ICS
|
||||||
|
|
||||||
binder.SetAttribute( "direction", "INCREASE" );
|
binder.SetAttribute( "direction", "INCREASE" );
|
||||||
|
|
||||||
|
binder.SetAttribute( "deviceId", "1" ); //completely useless, but required for backwards compatability
|
||||||
|
|
||||||
control.InsertEndChild(binder);
|
control.InsertEndChild(binder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -594,6 +596,8 @@ namespace ICS
|
||||||
|
|
||||||
binder.SetAttribute( "direction", "DECREASE" );
|
binder.SetAttribute( "direction", "DECREASE" );
|
||||||
|
|
||||||
|
binder.SetAttribute( "deviceId", "1" ); //completely useless, but required for backwards compatability
|
||||||
|
|
||||||
control.InsertEndChild(binder);
|
control.InsertEndChild(binder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -607,6 +611,8 @@ namespace ICS
|
||||||
|
|
||||||
binder.SetAttribute( "direction", "INCREASE" );
|
binder.SetAttribute( "direction", "INCREASE" );
|
||||||
|
|
||||||
|
binder.SetAttribute( "deviceId", "1" ); //completely useless, but required for backwards compatability
|
||||||
|
|
||||||
control.InsertEndChild(binder);
|
control.InsertEndChild(binder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -620,6 +626,8 @@ namespace ICS
|
||||||
|
|
||||||
binder.SetAttribute( "direction", "DECREASE" );
|
binder.SetAttribute( "direction", "DECREASE" );
|
||||||
|
|
||||||
|
binder.SetAttribute( "deviceId", "1" ); //completely useless, but required for backwards compatability
|
||||||
|
|
||||||
control.InsertEndChild(binder);
|
control.InsertEndChild(binder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue