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
+1 -1
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