Skip to content
Snippets Groups Projects
Unverified Commit 71dfe4a7 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #1815 from DarkLordZach/npad-pos-fix

npad: Fix copy/paste error with LED position assignments
parents 3cc204af 6df74ff5
No related branches found
No related tags found
No related merge requests found
......@@ -80,9 +80,9 @@ public:
struct LedPattern {
explicit LedPattern(u64 light1, u64 light2, u64 light3, u64 light4) {
position1.Assign(light1);
position1.Assign(light2);
position1.Assign(light3);
position1.Assign(light4);
position2.Assign(light2);
position3.Assign(light3);
position4.Assign(light4);
}
union {
u64 raw{};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment