Since the 2.9 Beta, DCS seems to ignore trim sensitivity edits to:
C:\Program Files\Eagle Dynamics\DCS World\Mods\aircraft\P-47D-30\Input\P-47D-30\joystick\default.lua.
Prior to 2.9 I could modify the trim sensitivity by editing:
-- Port Wall - Trim Control Box ------------------------------------------------------------
-- Aileron Trim Wheel
{ pressed = device_commands.Button_2, cockpit_device_id = devices.CONTROLS, value_pressed = -1.0, name = _('Trim Aileron Right'), category = _('Flight Control')},
{ pressed = device_commands.Button_2, cockpit_device_id = devices.CONTROLS, value_pressed = 1.0, name = _('Trim Aileron Left'), category = _('Flight Control')},
-- Elevator Trim Wheel
{ pressed = device_commands.Button_5, cockpit_device_id = devices.CONTROLS, value_pressed = -1.0, name = _('Trim Elevator Up'), category = _('Flight Control')},
{ pressed = device_commands.Button_5, cockpit_device_id = devices.CONTROLS, value_pressed = 1.0, name = _('Trim Elevator Down'), category = _('Flight Control')},
-- Rudder Trim Wheel
{ pressed = device_commands.Button_8, cockpit_device_id = devices.CONTROLS, value_pressed = -1.0, name = _('Trim Rudder Left'), category = _('Flight Control')},
{ pressed = device_commands.Button_8, cockpit_device_id = devices.CONTROLS, value_pressed = 1.0, name = _('Trim Rudder Right'), category = _('Flight Control')},
Editing the "value_pressed" value no longer has any effect.
Should I file a bug report for this or is there a better way to change the trim sensitivity?
Thanks.