summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSaenoe <87696194+Saenoe@users.noreply.github.com>2022-05-18 00:33:22 +0200
committerSaenoe <87696194+Saenoe@users.noreply.github.com>2022-05-18 00:33:22 +0200
commit95ef3bafcd6d65b1e1e05aaa7e8aaaac2b7a3883 (patch)
tree51ba6a94bd428193f8bc844cba67bf9c5f84c5a9 /modules
parent5c79782c7e21c1ca795ef92bb780e1ec4b52a592 (diff)
fix OpenXRAPI::is_extension_supported returning opposite result
Diffstat (limited to 'modules')
-rw-r--r--modules/openxr/openxr_api.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/openxr/openxr_api.cpp b/modules/openxr/openxr_api.cpp
index 6e94e3b444..f42af0492f 100644
--- a/modules/openxr/openxr_api.cpp
+++ b/modules/openxr/openxr_api.cpp
@@ -172,7 +172,7 @@ bool OpenXRAPI::load_supported_extensions() {
bool OpenXRAPI::is_extension_supported(const String &p_extension) const {
for (uint32_t i = 0; i < num_supported_extensions; i++) {
- if ((supported_extensions[i].extensionName == p_extension) == 0) {
+ if (supported_extensions[i].extensionName == p_extension) {
#ifdef DEBUG
print_line("OpenXR: requested extension", p_extension, "is supported");
#endif