conf.lua not being read (Lua/LOVE 0.8.0)
- by Brigham Andersen
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?