diff options
| author | Glenn Rice <glennricster@gmail.com> | 2010-11-16 04:34:52 +0000 |
|---|---|---|
| committer | Glenn Rice <glennricster@gmail.com> | 2010-11-16 04:34:52 +0000 |
| commit | 4f81997c14a5bc48f8412e4bdcd086127c765159 (patch) | |
| tree | a0f5530b3246e29096148eb0b6a1a1ef693cf6f6 /Source/Core/InputCommon/Src/ControllerInterface | |
| parent | 71f842e8c0b2d30944a025a3071ef908ac0770b6 (diff) | |
Fix the no gui cmake build.
Add a version check for avcodec and swscale libraries.
Fix a bug in the xlib wiimote emulation button configuration. If you are using a mouse button for wiimote emulation you may need to adjust your settings.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6426 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/InputCommon/Src/ControllerInterface')
| -rw-r--r-- | Source/Core/InputCommon/Src/ControllerInterface/Xlib/Xlib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/Src/ControllerInterface/Xlib/Xlib.cpp b/Source/Core/InputCommon/Src/ControllerInterface/Xlib/Xlib.cpp index f9e05fbbab..c83eb892c0 100644 --- a/Source/Core/InputCommon/Src/ControllerInterface/Xlib/Xlib.cpp +++ b/Source/Core/InputCommon/Src/ControllerInterface/Xlib/Xlib.cpp @@ -163,7 +163,7 @@ std::string KeyboardMouse::Button::GetName() const } static char tmpstr[] = "Click ."; - tmpstr[7] = button; + tmpstr[6] = button; return tmpstr; } |
