diff options
| author | 2018-11-27 17:23:44 -0500 | |
|---|---|---|
| committer | 2018-11-27 17:23:44 -0500 | |
| commit | 6df74ff579bba00b3a4a19b45661b7f1d790729b (patch) | |
| tree | 1b6dea7813d3369d411b3df84d2376722c7c9e67 | |
| parent | Merge pull request #1802 from DarkLordZach/user-data-storage (diff) | |
| download | yuzu-6df74ff579bba00b3a4a19b45661b7f1d790729b.tar.gz yuzu-6df74ff579bba00b3a4a19b45661b7f1d790729b.tar.xz yuzu-6df74ff579bba00b3a4a19b45661b7f1d790729b.zip | |
npad: Fix copy/paste error with LED position assignments
| -rw-r--r-- | src/core/hle/service/hid/controllers/npad.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/hid/controllers/npad.h b/src/core/hle/service/hid/controllers/npad.h index ea8057b80..abff6544d 100644 --- a/src/core/hle/service/hid/controllers/npad.h +++ b/src/core/hle/service/hid/controllers/npad.h | |||
| @@ -80,9 +80,9 @@ public: | |||
| 80 | struct LedPattern { | 80 | struct LedPattern { |
| 81 | explicit LedPattern(u64 light1, u64 light2, u64 light3, u64 light4) { | 81 | explicit LedPattern(u64 light1, u64 light2, u64 light3, u64 light4) { |
| 82 | position1.Assign(light1); | 82 | position1.Assign(light1); |
| 83 | position1.Assign(light2); | 83 | position2.Assign(light2); |
| 84 | position1.Assign(light3); | 84 | position3.Assign(light3); |
| 85 | position1.Assign(light4); | 85 | position4.Assign(light4); |
| 86 | } | 86 | } |
| 87 | union { | 87 | union { |
| 88 | u64 raw{}; | 88 | u64 raw{}; |