diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-12-22 21:27:44 -0500 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-03-04 18:39:57 -0500 |
commit | 9d1ab766a0d953a307313bd1812b5416b1e913b9 (patch) | |
tree | 3d9b5787a00c705d0825b41b69d39dba1e09aad9 /src | |
parent | 07e13d6728868e5cb91615bec3aa6dfe9ec62b7b (diff) |
controllers/npad: Add accessor for current press state
Allows frontend/features to access pressed buttons conveniently as possible
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/hid/hid.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h index 7cc58db4c..e39cd6b51 100644 --- a/src/core/hle/service/hid/hid.h +++ b/src/core/hle/service/hid/hid.h @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #pragma once +#include "core/hle/service/service.h" #include "controllers/controller_base.h" #include "core/hle/service/service.h" |