Android: Fix unused value warning

Remove "env, " from "return env, GetControlPointer..." since the left
side of a comma operator has no effect.

This was presumably a copy/paste error from the function above it.
This commit is contained in:
Dentomologist 2025-10-29 16:19:15 -07:00
parent f2e6cb4c29
commit 570ec7c322

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