diff options
author | bunnei <bunneidev@gmail.com> | 2020-08-27 14:58:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-27 14:58:44 -0400 |
commit | 3db9a259771a44278ff34168ba140c2c7815a1cf (patch) | |
tree | e341942ba33f882468837d763004ae7de5fe0053 /src/input_common/settings.cpp | |
parent | 3f7b0e07721bf383325d874367efd7302e617fad (diff) | |
parent | 8ffc491546c8fa449e23463585e4b55498dcb307 (diff) |
Merge pull request #4530 from Morph1984/mjolnir-p1
Project Mjölnir: Part 1 - Input Rewrite
Diffstat (limited to 'src/input_common/settings.cpp')
-rw-r--r-- | src/input_common/settings.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/input_common/settings.cpp b/src/input_common/settings.cpp new file mode 100644 index 000000000..80c719cf4 --- /dev/null +++ b/src/input_common/settings.cpp @@ -0,0 +1,33 @@ +// Copyright 2020 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#include "input_common/settings.h" + +namespace Settings { +namespace NativeButton { +const std::array<const char*, NumButtons> mapping = {{ + "button_a", "button_b", "button_x", "button_y", "button_lstick", + "button_rstick", "button_l", "button_r", "button_zl", "button_zr", + "button_plus", "button_minus", "button_dleft", "button_dup", "button_dright", + "button_ddown", "button_sl", "button_sr", "button_home", "button_screenshot", +}}; +} + +namespace NativeAnalog { +const std::array<const char*, NumAnalogs> mapping = {{ + "lstick", + "rstick", +}}; +} + +namespace NativeMouseButton { +const std::array<const char*, NumMouseButtons> mapping = {{ + "left", + "right", + "middle", + "forward", + "back", +}}; +} +} // namespace Settings |