You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
running 'love .' in pong-2 results in a completely white screen. With love.graphics.clear(40, 45, 52, 255) commented out everything works expect the background color is black rather then grey. I'm using love 11.1 on a 32bit Windows 10 machine.
The text was updated successfully, but these errors were encountered:
The problem is in the representation of rgb. The code on this repo uses numbers between 0 and 255 to represent a rgb channel. The new love version uses values between 0 and 1. So every channel value x should be replaced with x/255.
running 'love .' in pong-2 results in a completely white screen. With
love.graphics.clear(40, 45, 52, 255)
commented out everything works expect the background color is black rather then grey. I'm using love 11.1 on a 32bit Windows 10 machine.The text was updated successfully, but these errors were encountered: