Page 1 of 1

Love 0.7.x -> Love 0.8.0

Posted: Sun Apr 15, 2012 10:25 am
by Dallox
So i tried to port my game (not really a game) to 0.8.0 but i cant seem to figure out whats wrong.
I checked the changelog and i think the only thing related to my code is the love.graphics.setFont() but deleting that doesnt really help.
Anyone knows whats wrong?

Re: Love 0.7.x -> Love 0.8.0

Posted: Sun Apr 15, 2012 10:32 am
by Petunien
If you mean the message, that your game is may not compatible with 0.8.0, change

Code: Select all

t.version = 0.8
to

Code: Select all

t.version = "0.8.0"
in the conf.lua.

Then all works fine here.

Re: Love 0.7.x -> Love 0.8.0

Posted: Sun Apr 15, 2012 10:34 am
by Dallox
Petunien wrote:If you mean the message, that your game is may not compatible with 0.8.0, change

Code: Select all

t.version = 0.8
to

Code: Select all

t.version = "0.8.0"
in the conf.lua.

Then all works fine here.
Actually, when i do that the game doesnt start at all. :?

EDIT: nevermind got it ^.^ thanks alot!