mirror of
https://github.com/love2d/love.git
synced 2026-08-13 17:10:54 +02:00
Fix typo in PixelEffect:send() dispatcher when trying to send unsupported type
This commit is contained in:
@@ -1351,7 +1351,7 @@ do
|
||||
end
|
||||
else
|
||||
local t = type(value)
|
||||
if t == "userdata" and value.type then t = valye.type end
|
||||
if t == "userdata" and value.type then t = value.type end
|
||||
error("Cannot send value (unsupported type: "..t..").")
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user