mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
HID: zero unused PadState bits
This commit is contained in:
parent
343bbfdabc
commit
599de29ea3
2 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ namespace HID {
|
|||
*/
|
||||
struct PadState {
|
||||
union {
|
||||
u32 hex;
|
||||
u32 hex{};
|
||||
|
||||
BitField<0, 1, u32> a;
|
||||
BitField<1, 1, u32> b;
|
||||
|
|
|
@ -18,7 +18,7 @@ namespace Service {
|
|||
namespace IR {
|
||||
|
||||
union PadState {
|
||||
u32_le hex;
|
||||
u32_le hex{};
|
||||
|
||||
BitField<14, 1, u32_le> zl;
|
||||
BitField<15, 1, u32_le> zr;
|
||||
|
|
Loading…
Reference in a new issue