Love.exe will stop responding after one update
Forum rules
Before you make a thread asking for help, read this.
Before you make a thread asking for help, read this.
-
- Prole
- Posts: 7
- Joined: Mon Oct 29, 2018 3:17 pm
Love.exe will stop responding after one update
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
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
Re: Love.exe will stop responding after one update
Some more info would be nice. What OS are you using? Have you tried opening löve without any game?
-
- Prole
- Posts: 7
- Joined: Mon Oct 29, 2018 3:17 pm
Re: Love.exe will stop responding after one update
Windows 10 and yes but it will keep running
- zorg
- Party member
- Posts: 3465
- Joined: Thu Dec 13, 2012 2:55 pm
- Location: Absurdistan, Hungary
- Contact:
Re: Love.exe will stop responding after one update
So the default no-game screen freezes too, but doesn't crash, is what you mean?
Me and my stuff True 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.
-
- Prole
- Posts: 7
- Joined: Mon Oct 29, 2018 3:17 pm
Re: Love.exe will stop responding after one update
No it just runs
Re: Love.exe will stop responding after one update
I'm not sure if it's related to your code, butThePixelHelix 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
Code: Select all
Function love.load
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)
Code: Select all
love.graphics.rectangle("line", 100, 100, 100, 100)
-
- Prole
- Posts: 7
- Joined: Mon Oct 29, 2018 3:17 pm
Re: Love.exe will stop responding after one update
What was the difference on the last one?
Re: Love.exe will stop responding after one update
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.
Word has the habit of converting normal ASCII quotes to fancy ones. If you pasted it from Word, that would be the problem.
-
- Prole
- Posts: 7
- Joined: Mon Oct 29, 2018 3:17 pm
Re: Love.exe will stop responding after one update
Nope it was in the text editor
Who is online
Users browsing this forum: Google [Bot], slime and 7 guests