mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-01-15 16:33:15 -03:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user