diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-03-20 09:00:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-20 09:00:50 +0100 |
commit | bec9fe2c2af1027a53ec52479527f974e7382090 (patch) | |
tree | 21a414ee18f854673ed5e2a8406ab64a997a916d /platform/android/java_godot_lib_jni.cpp | |
parent | b0aecb466dbc8a8c67f8aefb8277447f7603e9a5 (diff) | |
parent | d7b10beb1b856c0a7061a3dc93eac949671093e4 (diff) |
Merge pull request #37174 from m4gr3d/make_godot_plugin_callbacks_generic
Update the naming scheme for the GodotPlugin's methods
Diffstat (limited to 'platform/android/java_godot_lib_jni.cpp')
-rw-r--r-- | platform/android/java_godot_lib_jni.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/java_godot_lib_jni.cpp b/platform/android/java_godot_lib_jni.cpp index 0b1d070441..8bbf41d82d 100644 --- a/platform/android/java_godot_lib_jni.cpp +++ b/platform/android/java_godot_lib_jni.cpp @@ -207,7 +207,7 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_step(JNIEnv *env, jcl } os_android->main_loop_begin(); - godot_java->on_gl_godot_main_loop_started(env); + godot_java->on_godot_main_loop_started(env); ++step; } |