mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-02-10 21:49:01 -06:00
Common: Remove the string parameters from the HookableEvent interface.
This commit is contained in:
@@ -172,11 +172,10 @@ void InputConfig::RegisterHotplugCallback()
|
||||
{
|
||||
// Update control references on all controllers
|
||||
// as configured devices may have been added or removed.
|
||||
m_hotplug_event_hook =
|
||||
g_controller_interface.RegisterDevicesChangedCallback("InputConfig", [this] {
|
||||
for (auto& controller : m_controllers)
|
||||
controller->UpdateReferences(g_controller_interface);
|
||||
});
|
||||
m_hotplug_event_hook = g_controller_interface.RegisterDevicesChangedCallback([this] {
|
||||
for (auto& controller : m_controllers)
|
||||
controller->UpdateReferences(g_controller_interface);
|
||||
});
|
||||
}
|
||||
|
||||
void InputConfig::UnregisterHotplugCallback()
|
||||
|
||||
Reference in New Issue
Block a user