conf.lua not being read (Lua/LOVE 0.8.0)

Posted by Brigham Andersen on Stack Overflow See other posts from Stack Overflow or by Brigham Andersen
Published on 2013-11-09T09:15:50Z Indexed on 2013/11/09 9:53 UTC
Read the original article Hit count: 455

Filed under:
|
|
|
|

I need a higher resolution for my program to run. For some reason I cannot discern alone, LOVE is not applying (or finding?) conf.lua.

My folder architecture is as follows:

basefolder/

basefolder/main.lua

basefolder/conf.lua

basefolder/Resources/

My conf.lua reads:

function love.conf(t)
    t.window.width = 1280
    t.window.height = 720
end 

Is it something with my code, or with how my directory is set up?

© Stack Overflow or respective owner

Related posts about lua

Related posts about directory