From dfecc2551ed69ffe7a89349b6d1532192791d21e Mon Sep 17 00:00:00 2001 From: 1029chris <1029chris@gmail.com> Date: Sun, 24 Apr 2016 16:59:09 -0700 Subject: elements.lua stuff sets color to white after finished changed 256 to 255 throught project --- virus1.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'virus1.lua') diff --git a/virus1.lua b/virus1.lua index 76294c9..2a207e0 100644 --- a/virus1.lua +++ b/virus1.lua @@ -56,7 +56,7 @@ function drawVirusFight1() end love.graphics.setColor(colors.font.dark) love.graphics.print("FIRE", win[4].x+138/2+76, win[4].y+99) - love.graphics.setColor(256,256,256) + love.graphics.setColor(255,255,255) drawDownBox(win[4].x+138/2+79-1, win[4].y+40-1, 42, 42, 2) love.graphics.stencil(chargeStencil, "replace", 1) love.graphics.setStencilTest("greater", 0) -- cgit