We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 938762a commit 7fe4c2cCopy full SHA for 7fe4c2c
fixmrt.lua
@@ -2,8 +2,9 @@
2
-- This script patches LOVE rendering pipeline to workaround MRT bandwidth problem in some GPU drivers.
3
-- See: https://github.com/love2d/love/commit/1896f82f5d40d33a551f7c5fd9662db3b4ccdf31
4
5
-if love._version >= "11.3" then
6
- -- Already fixed in this version
+if love.getVersion() < 11 or love._version >= "11.3" then
+ -- LOVE pre-11.0 does not have this problem.
7
+ -- LOVE 11.3 already have this problem worked around.
8
return true
9
end
10
0 commit comments