Search found 4 matches
- Fri Dec 01, 2017 9:05 pm
- Forum: Support and Development
- Topic: LOVE window problems
- Replies: 6
- Views: 4273
Re: LOVE window problems
Thank you for the help, I've managed to fix the problem by formatting my computer and now everything works fine.
- Fri Dec 01, 2017 2:01 pm
- Forum: Support and Development
- Topic: LOVE window problems
- Replies: 6
- Views: 4273
Re: LOVE window problems
I've updted all of my drivers, still the error persists.
- Fri Dec 01, 2017 1:22 pm
- Forum: Support and Development
- Topic: LOVE window problems
- Replies: 6
- Views: 4273
Re: LOVE window problems
My GPU is integrated from my laptop's i3- 4005U, I believe it's the Intel 4400. I haven't checked my drivers in a while, will see if any of them are outdated.
- Fri Dec 01, 2017 1:15 pm
- Forum: Support and Development
- Topic: LOVE window problems
- Replies: 6
- Views: 4273
LOVE window problems
So I just made this moving cube thing with this code : function love.load() x = 0 end function love.update(dt) if love.keyboard.isDown("right") then x = x + 1 end end function love.draw() love.graphics.rectangle("fill", x, 10, 100, 100) end It's supposed to work fine, but wheneve...