From 2882b3e143e38e196ce5f505d6ed802fbe1c7d23 Mon Sep 17 00:00:00 2001 From: saurtron Date: Fri, 20 Dec 2024 03:05:58 +0100 Subject: [PATCH] Fix typo hasVBO -> hasFBO. (#4044) --- common/platformFunctions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/platformFunctions.lua b/common/platformFunctions.lua index 58a2e7d5e9b..07c3de43d80 100644 --- a/common/platformFunctions.lua +++ b/common/platformFunctions.lua @@ -35,7 +35,7 @@ local function checkRequires(allRequires) return false elseif req == 'shaders' and not hasShaders then return false - elseif req == 'fbo' and not hasVBO then + elseif req == 'fbo' and not hasFBO then return false end end