diff options
author | Bastiaan Olij <mux213@gmail.com> | 2019-04-30 21:47:14 +1000 |
---|---|---|
committer | Bastiaan Olij <mux213@gmail.com> | 2019-04-30 21:47:14 +1000 |
commit | a8114b993691347e5333343cec3f07a43fc8fc68 (patch) | |
tree | 9911fad3ba41342e11c7152ae9f1d15288ffa80b /modules/gdnative/include | |
parent | e949d6c2ae64a0faecd595b7589c1690426f18a7 (diff) |
Forgot a parameter in the ARVR gdnative bindings for notifications
Diffstat (limited to 'modules/gdnative/include')
-rw-r--r-- | modules/gdnative/include/arvr/godot_arvr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/include/arvr/godot_arvr.h b/modules/gdnative/include/arvr/godot_arvr.h index 60bad27618..657090fa70 100644 --- a/modules/gdnative/include/arvr/godot_arvr.h +++ b/modules/gdnative/include/arvr/godot_arvr.h @@ -63,7 +63,7 @@ typedef struct { void (*process)(void *); // only in 1.1 onwards godot_int (*get_external_texture_for_eye)(void *, godot_int); - void (*notification)(godot_int); + void (*notification)(void *, godot_int); } godot_arvr_interface_gdnative; void GDAPI godot_arvr_register_interface(const godot_arvr_interface_gdnative *p_interface); |