summaryrefslogtreecommitdiffstats
path: root/src/core/hid/hid_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hid/hid_core.h')
-rw-r--r--src/core/hid/hid_core.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hid/hid_core.h b/src/core/hid/hid_core.h
index 140a0e962..837f7de49 100644
--- a/src/core/hid/hid_core.h
+++ b/src/core/hid/hid_core.h
@@ -45,6 +45,9 @@ public:
/// Returns the first connected npad id
NpadIdType GetFirstNpadId() const;
+ /// Returns the first disconnected npad id
+ NpadIdType GetFirstDisconnectedNpadId() const;
+
/// Sets all emulated controllers into configuring mode.
void EnableAllControllerConfiguration();
@@ -73,7 +76,7 @@ private:
std::unique_ptr<EmulatedController> handheld;
std::unique_ptr<EmulatedConsole> console;
std::unique_ptr<EmulatedDevices> devices;
- NpadStyleTag supported_style_tag;
+ NpadStyleTag supported_style_tag{NpadStyleSet::All};
};
} // namespace Core::HID