summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorSuperUserNameMan <[email protected]>2023-10-09 09:54:43 +0200
committerGitHub <[email protected]>2023-10-09 09:54:43 +0200
commitdfb0326d00c65e145472464b5ebe74802fe630cc (patch)
tree9f14395c1d0bddbf82acccd62f92dabfefbb6f94 /src
parent33c84b3c0092982aa3472e94a766f6bf711a31b9 (diff)
downloadraylib-dfb0326d00c65e145472464b5ebe74802fe630cc.tar.gz
raylib-dfb0326d00c65e145472464b5ebe74802fe630cc.zip
Update rcore.c (#3326)
Diffstat (limited to 'src')
-rw-r--r--src/rcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rcore.c b/src/rcore.c
index a3075aac..29881198 100644
--- a/src/rcore.c
+++ b/src/rcore.c
@@ -762,7 +762,7 @@ VrStereoConfig LoadVrStereoConfig(VrDeviceInfo device)
{
VrStereoConfig config = { 0 };
- if ((rlGetVersion() == RL_OPENGL_33) || (rlGetVersion() >= RL_OPENGL_ES_20))
+ if (rlGetVersion() != RL_OPENGL_11)
{
// Compute aspect ratio
float aspect = ((float)device.hResolution*0.5f)/(float)device.vResolution;