From 922e289b1419494dd271393b5451913dc7e1e004 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 27 Jul 2020 18:49:27 +0200 Subject: [PATCH] do not request shader in rotspace -- not that good --- raycaster.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/raycaster.cpp b/raycaster.cpp index 0bcf9a0a..5deaa17b 100644 --- a/raycaster.cpp +++ b/raycaster.cpp @@ -94,6 +94,7 @@ EX bool requested() { #endif if(!available()) return false; if(want_use == 2) return true; + if(rotspace) return false; // not very good return racing::on || quotient || fake::in(); }