summaryrefslogtreecommitdiff
path: root/modules/gdnative/arvr/arvr_interface_gdnative.cpp
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/arvr/arvr_interface_gdnative.cpp
parente949d6c2ae64a0faecd595b7589c1690426f18a7 (diff)
Forgot a parameter in the ARVR gdnative bindings for notifications
Diffstat (limited to 'modules/gdnative/arvr/arvr_interface_gdnative.cpp')
-rw-r--r--modules/gdnative/arvr/arvr_interface_gdnative.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/arvr/arvr_interface_gdnative.cpp b/modules/gdnative/arvr/arvr_interface_gdnative.cpp
index eac8e26160..c3f8688adb 100644
--- a/modules/gdnative/arvr/arvr_interface_gdnative.cpp
+++ b/modules/gdnative/arvr/arvr_interface_gdnative.cpp
@@ -227,7 +227,7 @@ void ARVRInterfaceGDNative::notification(int p_what) {
// this is only available in interfaces that implement 1.1 or later
if ((interface->version.major > 1) || ((interface->version.major == 1) && (interface->version.minor > 0))) {
- interface->notification(p_what);
+ interface->notification(data, p_what);
}
}