소스 검색

core: hid: hid_types: Add "All" to NpadButton

This represents a bitmask for all pressed buttons
Morph 4 년 전
부모
커밋
bfac21fca1
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/core/hid/hid_types.h

+ 2 - 0
src/core/hid/hid_types.h

@@ -63,6 +63,8 @@ enum class NpadButton : u64 {
     LagonCUp = 1ULL << 32,
     LagonCRight = 1ULL << 33,
     LagonCDown = 1ULL << 34,
+
+    All = 0xFFFFFFFFFFFFFFFFULL,
 };
 DECLARE_ENUM_FLAG_OPERATORS(NpadButton);