mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-18 10:47:55 +00:00
Move input values into an array
This commit is contained in:
parent
453764aefc
commit
1bc7829ee9
7 changed files with 80 additions and 145 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue