1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-04 14:30:35 +00:00

vr:: disabled for mac for now, works correctly in mingw64

This commit is contained in:
Zeno Rogue 2020-11-22 17:41:30 +01:00
parent 29c1676c75
commit 60a037265f

View File

@ -315,7 +315,7 @@
#endif #endif
#ifndef CAP_VR #ifndef CAP_VR
#define CAP_VR ISSTEAM #define CAP_VR (ISSTEAM && !ISMAC)
#endif #endif
#ifndef CAP_LEGACY #ifndef CAP_LEGACY
@ -469,8 +469,12 @@ typedef unsigned GLuint;
#include <limits.h> #include <limits.h>
#if CAP_VR #if CAP_VR
#ifdef __MINGW32__
#include "openvr_mingw.hpp"
#else
#include "openvr.h" #include "openvr.h"
#endif #endif
#endif
#if CAP_VIDEO #if CAP_VIDEO
#include <sys/wait.h> #include <sys/wait.h>