diff options
Diffstat (limited to 'nautsicons.lua')
-rw-r--r-- | nautsicons.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nautsicons.lua b/nautsicons.lua index e35fa61..6c09a8f 100644 --- a/nautsicons.lua +++ b/nautsicons.lua @@ -1,6 +1,6 @@ -- Spritesheet for character portraits local nauts = require "nautslist" -local w, h = 980, 27 +local w, h = 1008, 27 local icons = {} local i = 0 @@ -8,4 +8,4 @@ for _,naut in pairs(nauts) do icons[naut] = love.graphics.newQuad(i*28, 0, 28, 27, w, h) i = i + 1 end -return icons
\ No newline at end of file +return icons |