From dfb0326d00c65e145472464b5ebe74802fe630cc Mon Sep 17 00:00:00 2001
From: SuperUserNameMan <yoann@terminajones.com>
Date: Mon, 9 Oct 2023 09:54:43 +0200
Subject: [PATCH] Update rcore.c (#3326)

---
 src/rcore.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/rcore.c b/src/rcore.c
index a3075aac5..29881198a 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;