Так, у нас там ввели Lua 5.4, чтоб оно криво не детектило

(вроде оптимайзед не ломается на ней)
This commit is contained in:
Vladislav 2023-06-24 19:27:24 +02:00
parent 2bb6da5d0c
commit 9c64fdb125
No known key found for this signature in database
GPG Key ID: E1E424FBF6DEC268

View File

@ -8,7 +8,7 @@ local color = {}
--------------------------------------------------------------------------------
-- Optimized Lua 5.3 bitwise support
if computer.getArchitecture and computer.getArchitecture() == "Lua 5.3" then
if computer.getArchitecture and computer.getArchitecture() ~= "Lua 5.2" then
integerToRGB, RGBToInteger, blend, transition, to8Bit = load([[
local mathHuge, palette = math.huge, select(1, ...)