From 25aca8cc4a7bfa764d1381dd57fd6e75d7039c26 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Tue, 22 Jun 2010 08:30:33 +0000 Subject: 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 --- .../Src/ControllerInterface/DirectInput/DirectInputMouse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/InputCommon/Src/ControllerInterface/DirectInput/DirectInputMouse.cpp') 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; } -- cgit v1.2.3