Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-02-17 | setup: fix "control reaches end of non-void function" compiler warning | Fabian Greffrath | |
Actually, it is impossible to reach the end of these two functions without return()ing earlier from one of the switch() statements' branches. But since the compiler cannot know this and warns about it, and since this warning can be escalated into an error in later compiler versions, silence it by return()ing a dummy value at the end of each function. Fixes #508 | |||
2014-05-17 | setup: Tweak joystick axis widget. | Simon Howard | |
Reduce the width slightly (the previous size was excessively wide) and tweak "none" string to match the joystick button widget. | |||
2014-05-16 | setup: Factor out axis configuration to widget. | Simon Howard | |
Move code for configuring joystick axes into a separate widget, and add axis widgets to the configuration window for all possible movement. |