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/arvr/arvr_interface_gdnative.cpp | |
parent | e949d6c2ae64a0faecd595b7589c1690426f18a7 (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.cpp | 2 |
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); } } |