From 570ec7c322d9fb54b24d2becc7007a7420170596 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Wed, 29 Oct 2025 16:19:15 -0700 Subject: [PATCH] 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. --- Source/Android/jni/Input/CoreDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Android/jni/Input/CoreDevice.cpp b/Source/Android/jni/Input/CoreDevice.cpp index 8d7984b5e32..4da29843d74 100644 --- a/Source/Android/jni/Input/CoreDevice.cpp +++ b/Source/Android/jni/Input/CoreDevice.cpp @@ -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