1
0

Code quality v2
All checks were successful
LÖVE Library / Lua-Testing (push) Successful in 5s
LÖVE Library / Static-Analysis (push) Successful in 4s

This commit is contained in:
Jon Michael Aanes 2024-04-26 11:58:22 +02:00
parent 4da6f66703
commit f02c18c26e

View File

@ -3,8 +3,9 @@
--- Has support for both individual images in spritesheets and animations. This --- Has support for both individual images in spritesheets and animations. This
--- can be specified from a lua file placed beside the spritesheet image file. --- can be specified from a lua file placed beside the spritesheet image file.
local error_original = error
local error, error_internal do local error, error_internal do
error, error_internal = error, error error, error_internal = error_original, error_original
local success, errorlib = pcall(require, 'errors') local success, errorlib = pcall(require, 'errors')
if success then if success then
error = errorlib 'spritesheet' error = errorlib 'spritesheet'