From 85451587823db83fad842b66526db094ec283475 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sat, 9 Apr 2016 11:46:51 -0700 Subject: [PATCH] Cleanup. --- src/hmd_openvr.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/hmd_openvr.cpp b/src/hmd_openvr.cpp index 8e8730321..9e360cbf1 100644 --- a/src/hmd_openvr.cpp +++ b/src/hmd_openvr.cpp @@ -60,14 +60,14 @@ namespace bgfx VR_GetVRInitErrorAsEnglishDescription = (PFN_VR_GETVRINITERRORASENGLISHDESCRIPTION)bx::dlsym(openvrdll, "VR_GetVRInitErrorAsEnglishDescription"); if (NULL == VR_InitInternal - && NULL == VR_ShutdownInternal - && NULL == VR_IsHmdPresent - && NULL == VR_GetGenericInterface - && NULL == VR_IsRuntimeInstalled - && NULL == VR_IsInterfaceVersionValid - && NULL == VR_GetInitToken - && NULL == VR_GetVRInitErrorAsSymbol - && NULL == VR_GetVRInitErrorAsEnglishDescription) + || NULL == VR_ShutdownInternal + || NULL == VR_IsHmdPresent + || NULL == VR_GetGenericInterface + || NULL == VR_IsRuntimeInstalled + || NULL == VR_IsInterfaceVersionValid + || NULL == VR_GetInitToken + || NULL == VR_GetVRInitErrorAsSymbol + || NULL == VR_GetVRInitErrorAsEnglishDescription) { bx::dlclose(openvrdll); return NULL;