mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
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
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user