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 /window.lua | |
| parent | a90170e524d6f1c20c46029fcb4a963a1d2e0da2 (diff) | |
elements.lua stuff sets color to white after finished
changed 256 to 255 throught project
Diffstat (limited to 'window.lua')
| -rw-r--r-- | window.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ function drawWindow(id) if win[id].update == true then love.graphics.setCanvas(win[id].cvs) drawUpBox(0, 0, win[id].w, win[id].h, 4) - love.graphics.setColor(256,256,256) + love.graphics.setColor(255,255,255) if win[id].bar == "active" then love.graphics.draw(window.bar, 0+3, 0+3, 0, (win[id].w-7)/643, 1) else |
