Basically, if I run the folder on my mac, I get a "attempted to call field 'setMode' (a nil value)".
The function in question is:
Code: Select all
function init()
love.graphics.setMode(25*tileSize, 25*tileSize, false, false, 0)
...
Edit: Oh, I should say where it's being called from.
Code: Select all
function love.load()
local sound = love.audio.newSource("lib/music1.mp3")
sound:setVolume(.2)
sound:setLooping(true)
love.audio.play(sound)
goalSound:setVolume(.2)
goalSound:rewind()
img = love.graphics.newImage("lib/HowToPlay.png")
q = love.graphics.newQuad(0,0,800,800,800,800)
thanksimg = love.graphics.newImage("lib/thanks.png")
tq = love.graphics.newQuad(0,0,800,800,800,800)
loadMap(firstLevel)
init()
end
Edit2: The source is here: https://bitbucket.org/HorizonShadow/gam ... ?at=master
Cheers.