summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-10-25 18:44:09 +0100
committerLioncash <mathew1800@gmail.com>2020-10-25 18:44:12 +0100
commit061a63547f074e24b6a018ec572adabfad264679 (patch)
tree8e741905b358d3ec2dd83301f1640299fb63c761
parentcore: Fix clang build pt.3 (diff)
downloadyuzu-061a63547f074e24b6a018ec572adabfad264679.tar
yuzu-061a63547f074e24b6a018ec572adabfad264679.tar.gz
yuzu-061a63547f074e24b6a018ec572adabfad264679.tar.bz2
yuzu-061a63547f074e24b6a018ec572adabfad264679.tar.lz
yuzu-061a63547f074e24b6a018ec572adabfad264679.tar.xz
yuzu-061a63547f074e24b6a018ec572adabfad264679.tar.zst
yuzu-061a63547f074e24b6a018ec572adabfad264679.zip
-rw-r--r--src/yuzu/applets/controller.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/yuzu/applets/controller.cpp b/src/yuzu/applets/controller.cpp
index 9d45f2a01..8063909ff 100644
--- a/src/yuzu/applets/controller.cpp
+++ b/src/yuzu/applets/controller.cpp
@@ -18,15 +18,15 @@
namespace {
-constexpr std::array<std::array<bool, 4>, 8> led_patterns = {{
- {1, 0, 0, 0},
- {1, 1, 0, 0},
- {1, 1, 1, 0},
- {1, 1, 1, 1},
- {1, 0, 0, 1},
- {1, 0, 1, 0},
- {1, 0, 1, 1},
- {0, 1, 1, 0},
+constexpr std::array<std::array<bool, 4>, 8> led_patterns{{
+ {true, false, false, false},
+ {true, true, false, false},
+ {true, true, true, false},
+ {true, true, true, true},
+ {true, false, false, true},
+ {true, false, true, false},
+ {true, false, true, true},
+ {false, true, true, false},
}};
void UpdateController(Settings::ControllerType controller_type, std::size_t npad_index,