This commit is contained in:
Kenny Shields 2013-12-11 08:50:18 -05:00
parent 696c1b8ed5
commit d9e75bd46c

View File

@ -92,7 +92,9 @@ function loveframes.skins.Register(skin)
local extension = v.extension
local fullpath = v.fullpath
local key = filename .. "." .. extension
loveframes.skins.available[name].images[key] = love.graphics.newImage(fullpath)
if extension ~= "db" then
loveframes.skins.available[name].images[key] = love.graphics.newImage(fullpath)
end
end
end