Love.exe will stop responding after one update

Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help, read this.
ThePixelHelix
Prole
Posts: 7
Joined: Mon Oct 29, 2018 3:17 pm

Love.exe will stop responding after one update

Post by ThePixelHelix »

As I said love will stop responding after it refreshes once
It displays not responding in the corner and everything
I tried this with just drawing a rectangle and it still stops this is all it needs to stop

Function love.load
end

function love.update
end

function love.draw
love.graphics.rectangle(“line”, 100, 100, 100, 100)
end
User avatar
steVeRoll
Party member
Posts: 131
Joined: Sun Feb 14, 2016 1:13 pm

Re: Love.exe will stop responding after one update

Post by steVeRoll »

Some more info would be nice. What OS are you using? Have you tried opening löve without any game?
ThePixelHelix
Prole
Posts: 7
Joined: Mon Oct 29, 2018 3:17 pm

Re: Love.exe will stop responding after one update

Post by ThePixelHelix »

Windows 10 and yes but it will keep running
User avatar
zorg
Party member
Posts: 3441
Joined: Thu Dec 13, 2012 2:55 pm
Location: Absurdistan, Hungary
Contact:

Re: Love.exe will stop responding after one update

Post by zorg »

ThePixelHelix wrote: Tue Oct 30, 2018 10:32 am Windows 10 and yes but it will keep running
So the default no-game screen freezes too, but doesn't crash, is what you mean?
Me and my stuff :3True Neutral Aspirant. Why, yes, i do indeed enjoy sarcastically correcting others when they make the most blatant of spelling mistakes. No bullying or trolling the innocent tho.
ThePixelHelix
Prole
Posts: 7
Joined: Mon Oct 29, 2018 3:17 pm

Re: Love.exe will stop responding after one update

Post by ThePixelHelix »

No it just runs
User avatar
xNick1
Party member
Posts: 267
Joined: Wed Jun 15, 2016 8:27 am
Location: Rome, Italy

Re: Love.exe will stop responding after one update

Post by xNick1 »

ThePixelHelix wrote: Mon Oct 29, 2018 3:45 pm As I said love will stop responding after it refreshes once
It displays not responding in the corner and everything
I tried this with just drawing a rectangle and it still stops this is all it needs to stop

Function love.load
end

function love.update
end

function love.draw
love.graphics.rectangle(“line”, 100, 100, 100, 100)
end
I'm not sure if it's related to your code, but

Code: Select all

Function love.load
should be

Code: Select all

function love.load()

Code: Select all

function love.update

should become

Code: Select all

function love.update(dt)

Code: Select all

function love.draw

should become

Code: Select all

function love.draw()

Code: Select all

love.graphics.rectangle(“line”, 100, 100, 100, 100)
should become

Code: Select all

love.graphics.rectangle("line", 100, 100, 100, 100)
Those double quotes are weird
ThePixelHelix
Prole
Posts: 7
Joined: Mon Oct 29, 2018 3:17 pm

Re: Love.exe will stop responding after one update

Post by ThePixelHelix »

What was the difference on the last one?
User avatar
pgimeno
Party member
Posts: 3548
Joined: Sun Oct 18, 2015 2:58 pm

Re: Love.exe will stop responding after one update

Post by pgimeno »

Fancy quotes “” are not ASCII and they are not recognized by most programming languages. They expect ASCII quotes: ""

Word has the habit of converting normal ASCII quotes to fancy ones. If you pasted it from Word, that would be the problem.
grump
Party member
Posts: 947
Joined: Sat Jul 22, 2017 7:43 pm

Re: Love.exe will stop responding after one update

Post by grump »

Image
ThePixelHelix
Prole
Posts: 7
Joined: Mon Oct 29, 2018 3:17 pm

Re: Love.exe will stop responding after one update

Post by ThePixelHelix »

Nope it was in the text editor
Post Reply

Who is online

Users browsing this forum: Google [Bot] and 65 guests