summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInputMouse.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2010-06-22 08:30:33 +0000
committerJordan Woyak <jordan.woyak@gmail.com>2010-06-22 08:30:33 +0000
commit25aca8cc4a7bfa764d1381dd57fd6e75d7039c26 (patch)
tree71233403fade2f7a1dbc29618d8062559dddb5ca /Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInputMouse.cpp
parent1b670a982594672a6590b45728f2a1d59e6d7959 (diff)
GCPad/New Wiimote: Fixed issue 2848 (profiles not saving). Renamed DInput mouse axes to "Axis [XYZ][-+]" from "Mouse XYZ...". Minor cleanup/warning removal.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5767 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInputMouse.cpp')
-rw-r--r--Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInputMouse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInputMouse.cpp b/Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInputMouse.cpp
index 122582bf4f..acf762386c 100644
--- a/Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInputMouse.cpp
+++ b/Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInputMouse.cpp
@@ -153,7 +153,7 @@ std::string Mouse::Button::GetName() const
std::string Mouse::Axis::GetName() const
{
- std::string tmpstr("Mouse ");
+ std::string tmpstr("Axis ");
tmpstr += "XYZ"[m_index]; tmpstr += ( m_range>0 ? '+' : '-' );
return tmpstr;
}