Add warning logging if we can't find a 1.x Oculus dll

This commit is contained in:
Brad Davis 2016-03-28 13:00:15 -07:00
parent bd9813bbf5
commit 78626f7938

View file

@ -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;
}