Minor cleanup

This commit is contained in:
Ingo Ruhnke 2010-08-12 14:05:36 +02:00
parent cacd778963
commit 89b4240b81
2 changed files with 4 additions and 1 deletions

View file

@ -23,8 +23,8 @@
uInputCfg::uInputCfg() :
device_name("Xbox Gamepad (userspace driver)"),
trigger_as_button(false),
dpad_as_button(false),
trigger_as_zaxis(false),
dpad_as_button(false),
dpad_only(false),
force_feedback(false),
extra_devices(true)

View file

@ -28,10 +28,13 @@ class uInputCfg
{
public:
std::string device_name;
bool trigger_as_button;
bool trigger_as_zaxis;
bool dpad_as_button;
bool dpad_only;
bool force_feedback;
bool extra_devices;