diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-11-07 16:32:06 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-07 16:32:06 -0600 |
| commit | 5af9bd5e4630c671e8a7c71a598d803af028f195 (patch) | |
| tree | 65e0b320f383eb90afd22842ada615b5409e727d /Source/Core/InputCommon/ControllerInterface/Android | |
| parent | 51cd0a676a7979f31751af28485c8cfcd9e5a483 (diff) | |
| parent | da6c65bf3b83fa1cfe5da5dc5e43ec49b2786b52 (diff) | |
Merge pull request #14074 from jordan-woyak/HookableEvent-no-strings
Common: Remove the string parameters from the HookableEvent interface.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Android')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/Android/Android.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp b/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp index a11241d4f8..48eebbb7f6 100644 --- a/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp @@ -455,7 +455,7 @@ void RegisterDevicesChangedCallbackIfNeeded(JNIEnv* env, jclass controller_inter env->GetStaticMethodID(global_controller_interface_class, "onDevicesChanged", "()V"); static Common::EventHook event_hook = g_controller_interface.RegisterDevicesChangedCallback( - "Android", [global_controller_interface_class, controller_interface_on_devices_changed] { + [global_controller_interface_class, controller_interface_on_devices_changed] { IDCache::GetEnvForThread()->CallStaticVoidMethod(global_controller_interface_class, controller_interface_on_devices_changed); }); |
