diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-15 00:01:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-15 00:01:54 +0200 |
commit | 88e671e0b70293f30cf983e48837ebc85e2d5afc (patch) | |
tree | e78987fee0e034a0710ea37f25ac6fa8d78bdfdd /platform/javascript/godot_js.h | |
parent | 16027e7cf412140c128e7c002ce0be533b94db00 (diff) | |
parent | 049b5159f13d409ce48e6dd8abccf84ae1d311b3 (diff) |
Merge pull request #49592 from Faless/js/4.x_fix_sigs
[HTML5] Fix build without eval, library functions signatures.
Diffstat (limited to 'platform/javascript/godot_js.h')
-rw-r--r-- | platform/javascript/godot_js.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/javascript/godot_js.h b/platform/javascript/godot_js.h index 8927a83cb3..d332af2c31 100644 --- a/platform/javascript/godot_js.h +++ b/platform/javascript/godot_js.h @@ -84,7 +84,7 @@ extern void godot_js_display_cursor_set_custom_shape(const char *p_shape, const extern void godot_js_display_cursor_set_visible(int p_visible); // Display gamepad -extern char *godot_js_display_gamepad_cb(void (*p_on_change)(int p_index, int p_connected, const char *p_id, const char *p_guid)); +extern void godot_js_display_gamepad_cb(void (*p_on_change)(int p_index, int p_connected, const char *p_id, const char *p_guid)); extern int godot_js_display_gamepad_sample(); extern int godot_js_display_gamepad_sample_count(); extern int godot_js_display_gamepad_sample_get(int p_idx, float r_btns[16], int32_t *r_btns_num, float r_axes[10], int32_t *r_axes_num, int32_t *r_standard); |