From a1eaada6dab82a98606eeabb71ee6237311d9a74 Mon Sep 17 00:00:00 2001 From: hikerstk Date: Sun, 24 Nov 2013 10:05:49 +0000 Subject: [PATCH] Changed default settings for wiimote. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14563 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/config/user_config.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/user_config.hpp b/src/config/user_config.hpp index 5af9625a8..824917b9f 100644 --- a/src/config/user_config.hpp +++ b/src/config/user_config.hpp @@ -350,17 +350,17 @@ namespace UserConfigParams PARAM_DEFAULT( GroupUserConfigParam("WiiMote", "Settings for the wiimote") ); PARAM_PREFIX FloatUserConfigParam m_wiimote_raw_max - PARAM_DEFAULT( FloatUserConfigParam(25.0f, "wiimote-raw-max", + PARAM_DEFAULT( FloatUserConfigParam(20.0f, "wiimote-raw-max", &m_wiimote_group, "At what raw input value maximum steering is reached (between 1 and 25).") ); PARAM_PREFIX FloatUserConfigParam m_wiimote_weight_linear - PARAM_DEFAULT( FloatUserConfigParam(0.2f, "wiimote-weight-linear", + PARAM_DEFAULT( FloatUserConfigParam(1.0f, "wiimote-weight-linear", &m_wiimote_group, "A weight applied to the linear component of mapping wiimote angle to steering angle")); PARAM_PREFIX FloatUserConfigParam m_wiimote_weight_square - PARAM_DEFAULT( FloatUserConfigParam(0.8f, "wiimote-weight-square", + PARAM_DEFAULT( FloatUserConfigParam(0.0f, "wiimote-weight-square", &m_wiimote_group, "A weight applied to the square component of mapping wiimote angle to steering angle"));