Merge pull request #14050 from Dentomologist/android_input_fix_unused_value_warning

Android: Fix unused value warning
This commit is contained in:
Jordan Woyak 2025-10-30 01:44:12 -05:00 committed by GitHub
commit 478fb20bc2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,7 +68,7 @@ JNIEXPORT jdouble JNICALL
Java_org_dolphinemu_dolphinemu_features_input_model_CoreDevice_00024Control_getState(JNIEnv* env,
jobject obj)
{
return env, GetControlPointer(env, obj)->ToInput()->GetState();
return GetControlPointer(env, obj)->ToInput()->GetState();
}
JNIEXPORT void JNICALL