summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid
diff options
context:
space:
mode:
authorWeiyi Wang <wwylele@gmail.com>2017-08-10 16:50:18 +0200
committerGitHub <noreply@github.com>2017-08-10 16:50:18 +0200
commitaaf5161344ed36afddb97c1ee11f18ffb0ae1900 (patch)
treec2d38ff878e03b303ea9b5f2653abbc98430a765 /src/core/hle/service/hid
parentMerge pull request #2868 from wwylele/swr-tuple (diff)
parentHID: zero unused PadState bits (diff)
downloadyuzu-aaf5161344ed36afddb97c1ee11f18ffb0ae1900.tar
yuzu-aaf5161344ed36afddb97c1ee11f18ffb0ae1900.tar.gz
yuzu-aaf5161344ed36afddb97c1ee11f18ffb0ae1900.tar.bz2
yuzu-aaf5161344ed36afddb97c1ee11f18ffb0ae1900.tar.lz
yuzu-aaf5161344ed36afddb97c1ee11f18ffb0ae1900.tar.xz
yuzu-aaf5161344ed36afddb97c1ee11f18ffb0ae1900.tar.zst
yuzu-aaf5161344ed36afddb97c1ee11f18ffb0ae1900.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/hid/hid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h
index 1ef972e70..ef25926b5 100644
--- a/src/core/hle/service/hid/hid.h
+++ b/src/core/hle/service/hid/hid.h
@@ -24,7 +24,7 @@ namespace HID {
*/
struct PadState {
union {
- u32 hex;
+ u32 hex{};
BitField<0, 1, u32> a;
BitField<1, 1, u32> b;