From 78626f793831bd603e4dbdf400cafcb18a631a92 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Mon, 28 Mar 2016 13:00:15 -0700 Subject: [PATCH] Add warning logging if we can't find a 1.x Oculus dll --- plugins/oculus/src/OculusHelpers.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/oculus/src/OculusHelpers.cpp b/plugins/oculus/src/OculusHelpers.cpp index fdd35a06fe..cfac175392 100644 --- a/plugins/oculus/src/OculusHelpers.cpp +++ b/plugins/oculus/src/OculusHelpers.cpp @@ -51,6 +51,7 @@ bool oculusAvailable() { // HACK Explicitly check for the presence of the 1.0 runtime DLL, and fail if it // doesn't exist if (!QFile(GOOD_OCULUS_RUNTIME_FILE).exists()) { + qCWarning(oculus) << "Oculus Runtime detected, but no 1.x DLL present."; return false; }