mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-12-16 04:09:39 +00: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:
parent
f2e6cb4c29
commit
570ec7c322
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user