diff options
author | James Rowe <jroweboy@gmail.com> | 2015-06-20 05:34:45 +0200 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2015-07-28 05:41:21 +0200 |
commit | 1bc7829ee9f8bb73c92c7be672a77308ea44fe70 (patch) | |
tree | d3b17dcb11dd8ab39c92c7bac9a9dc61c5cf44ba /src/core/hle/service/hid/hid.h | |
parent | Merge pull request #989 from lioncash/extern (diff) | |
download | yuzu-1bc7829ee9f8bb73c92c7be672a77308ea44fe70.tar yuzu-1bc7829ee9f8bb73c92c7be672a77308ea44fe70.tar.gz yuzu-1bc7829ee9f8bb73c92c7be672a77308ea44fe70.tar.bz2 yuzu-1bc7829ee9f8bb73c92c7be672a77308ea44fe70.tar.lz yuzu-1bc7829ee9f8bb73c92c7be672a77308ea44fe70.tar.xz yuzu-1bc7829ee9f8bb73c92c7be672a77308ea44fe70.tar.zst yuzu-1bc7829ee9f8bb73c92c7be672a77308ea44fe70.zip |
Diffstat (limited to 'src/core/hle/service/hid/hid.h')
-rw-r--r-- | src/core/hle/service/hid/hid.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h index d50d479f8..517f4f2ae 100644 --- a/src/core/hle/service/hid/hid.h +++ b/src/core/hle/service/hid/hid.h @@ -9,7 +9,7 @@ #ifndef _MSC_VER #include <cstddef> #endif - +#include "core/settings.h" #include "common/bit_field.h" #include "common/common_funcs.h" #include "common/common_types.h" @@ -157,6 +157,9 @@ const PadState PAD_CIRCLE_LEFT = {{1u << 29}}; const PadState PAD_CIRCLE_UP = {{1u << 30}}; const PadState PAD_CIRCLE_DOWN = {{1u << 31}}; + +extern const std::array<Service::HID::PadState, Settings::NativeInput::NUM_INPUTS> pad_mapping; + /** * HID::GetIPCHandles service function * Inputs: |