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 --- elements.lua | 3 +++ 1 file changed, 3 insertions(+) (limited to 'elements.lua') diff --git a/elements.lua b/elements.lua index 1471e3e..ef75a54 100644 --- a/elements.lua +++ b/elements.lua @@ -29,6 +29,7 @@ function drawUpBox(x, y, w, h, t) love.graphics.line(x, y+h, x, y, x+w, y) love.graphics.setColor(colors.win.dark) love.graphics.line(x, y+h, x+w, y+h, x+w, y) + love.graphics.setColor(255,255,255) end function drawDownBox(x, y, w, h, t) love.graphics.setColor(colors.win.normal) @@ -38,6 +39,7 @@ function drawDownBox(x, y, w, h, t) love.graphics.line(x, y+h, x, y, x+w, y) love.graphics.setColor(colors.win.light) love.graphics.line(x, y+h, x+w, y+h, x+w, y) + love.graphics.setColor(255,255,255) end function drawBlueBox(x, y, w, h, t) love.graphics.setColor(0, 0, 120) @@ -47,6 +49,7 @@ function drawBlueBox(x, y, w, h, t) love.graphics.line(x, y+h, x, y, x+w, y) love.graphics.setColor(0, 0, 80) love.graphics.line(x, y+h, x+w, y+h, x+w, y) + love.graphics.setColor(255,255,255) end function drawBubble(x,y,w,h,m) love.graphics.setColor(255,255,255) -- cgit