diff options
| author | 1029chris <1029chris@gmail.com> | 2016-04-24 16:59:09 -0700 |
|---|---|---|
| committer | 1029chris <1029chris@gmail.com> | 2016-04-24 16:59:09 -0700 |
| commit | dfecc2551ed69ffe7a89349b6d1532192791d21e (patch) | |
| tree | a45b1a72c2fa6063f2cd69031c51354f9eda3dcf /elements.lua | |
| parent | a90170e524d6f1c20c46029fcb4a963a1d2e0da2 (diff) | |
elements.lua stuff sets color to white after finished
changed 256 to 255 throught project
Diffstat (limited to 'elements.lua')
| -rw-r--r-- | elements.lua | 3 |
1 files changed, 3 insertions, 0 deletions
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) |
