From 3fa621ba315634d39ad1020bfa81d552aa6f4155 Mon Sep 17 00:00:00 2001 From: IgorTimofeev Date: Tue, 7 Jun 2022 02:05:02 +0300 Subject: [PATCH] Fixed chunk source for colorlib load() --- Libraries/Color.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/Color.lua b/Libraries/Color.lua index 2130a50b..c01384c2 100755 --- a/Libraries/Color.lua +++ b/Libraries/Color.lua @@ -60,7 +60,7 @@ if computer.getArchitecture and computer.getArchitecture() == "Lua 5.3" then return closestIndex - 1 end - ]])(palette) + ]], "=lua53colorfunctions")(palette) else integerToRGB, RGBToInteger, blend, transition, to8Bit = load([[ local mathHuge, palette = math.huge, select(1, ...) @@ -165,7 +165,7 @@ else return closestIndex - 1 end - ]])(palette) + ]], "=lua52colorfunctions")(palette) end --------------------------------------------------------------------------------