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_wrapper.h | |
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_wrapper.h')
-rw-r--r-- | platform/android/java_godot_wrapper.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/java_godot_wrapper.h b/platform/android/java_godot_wrapper.h index cdab2ecc9c..fb77c8ba6a 100644 --- a/platform/android/java_godot_wrapper.h +++ b/platform/android/java_godot_wrapper.h @@ -61,7 +61,7 @@ private: jmethodID _is_activity_resumed = 0; jmethodID _vibrate = 0; jmethodID _get_input_fallback_mapping = 0; - jmethodID _on_gl_godot_main_loop_started = 0; + jmethodID _on_godot_main_loop_started = 0; public: GodotJavaWrapper(JNIEnv *p_env, jobject p_godot_instance); @@ -73,7 +73,7 @@ public: jobject get_class_loader(); void on_video_init(JNIEnv *p_env = NULL); - void on_gl_godot_main_loop_started(JNIEnv *p_env = NULL); + void on_godot_main_loop_started(JNIEnv *p_env = NULL); void restart(JNIEnv *p_env = NULL); void force_quit(JNIEnv *p_env = NULL); void set_keep_screen_on(bool p_enabled); |