summaryrefslogtreecommitdiff
path: root/src/core/frontend/applets
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/frontend/applets')
-rw-r--r--src/core/frontend/applets/controller.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/frontend/applets/controller.h b/src/core/frontend/applets/controller.h
index 0908f2b69..a227f15cd 100644
--- a/src/core/frontend/applets/controller.h
+++ b/src/core/frontend/applets/controller.h
@@ -11,6 +11,7 @@
11namespace Core::Frontend { 11namespace Core::Frontend {
12 12
13using BorderColor = std::array<u8, 4>; 13using BorderColor = std::array<u8, 4>;
14using ExplainText = std::array<char, 0x81>;
14 15
15struct ControllerParameters { 16struct ControllerParameters {
16 s8 min_players{}; 17 s8 min_players{};
@@ -19,6 +20,8 @@ struct ControllerParameters {
19 bool enable_single_mode{}; 20 bool enable_single_mode{};
20 bool enable_border_color{}; 21 bool enable_border_color{};
21 std::vector<BorderColor> border_colors{}; 22 std::vector<BorderColor> border_colors{};
23 bool enable_explain_text{};
24 std::vector<ExplainText> explain_text{};
22 bool allow_pro_controller{}; 25 bool allow_pro_controller{};
23 bool allow_handheld{}; 26 bool allow_handheld{};
24 bool allow_dual_joycons{}; 27 bool allow_dual_joycons{};