controllers/npad: Fix LedPattern for P1-4
This commit is contained in:
parent
de79897f04
commit
e7c174b426
1 changed files with 3 additions and 3 deletions
|
@ -600,11 +600,11 @@ Controller_NPad::LedPattern Controller_NPad::GetLedPattern(u32 npad_id) {
|
||||||
case 0:
|
case 0:
|
||||||
return LedPattern{1, 0, 0, 0};
|
return LedPattern{1, 0, 0, 0};
|
||||||
case 1:
|
case 1:
|
||||||
return LedPattern{0, 1, 0, 0};
|
return LedPattern{1, 1, 0, 0};
|
||||||
case 2:
|
case 2:
|
||||||
return LedPattern{0, 0, 1, 0};
|
return LedPattern{1, 1, 1, 0};
|
||||||
case 3:
|
case 3:
|
||||||
return LedPattern{0, 0, 0, 1};
|
return LedPattern{1, 1, 1, 1};
|
||||||
case 4:
|
case 4:
|
||||||
return LedPattern{1, 0, 0, 1};
|
return LedPattern{1, 0, 0, 1};
|
||||||
case 5:
|
case 5:
|
||||||
|
|
Loading…
Reference in a new issue