summaryrefslogtreecommitdiff
path: root/modules/gdnative/include
diff options
context:
space:
mode:
authorBastiaan Olij <mux213@gmail.com>2019-04-30 21:47:14 +1000
committerBastiaan Olij <mux213@gmail.com>2019-04-30 21:47:14 +1000
commita8114b993691347e5333343cec3f07a43fc8fc68 (patch)
tree9911fad3ba41342e11c7152ae9f1d15288ffa80b /modules/gdnative/include
parente949d6c2ae64a0faecd595b7589c1690426f18a7 (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.h2
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);