summaryrefslogtreecommitdiffhomepage
path: root/config/menus/pause.lua
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2018-04-07 18:53:31 +0200
committerAki <nthirtyone@gmail.com>2018-04-07 18:53:31 +0200
commit6cef97b6e9ba6878607b1fff08e42ca19b79914f (patch)
tree4c74874da741a3a68ca707f0654e2559dca179b4 /config/menus/pause.lua
parent517625861535f76f1dcb992fff76d23fe4239f7c (diff)
downloadroflnauts-6cef97b6e9ba6878607b1fff08e42ca19b79914f.zip
roflnauts-6cef97b6e9ba6878607b1fff08e42ca19b79914f.tar.gz
roflnauts-6cef97b6e9ba6878607b1fff08e42ca19b79914f.tar.bz2
Hopefully all uses of setColor now use values in <0,1> range
Diffstat (limited to 'config/menus/pause.lua')
-rw-r--r--config/menus/pause.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/menus/pause.lua b/config/menus/pause.lua
index 60aa2fc..d0b5777 100644
--- a/config/menus/pause.lua
+++ b/config/menus/pause.lua
@@ -9,7 +9,7 @@ local bx = width/2-29
return {
Element(menu)
:set("draw", function (self, scale)
- love.graphics.setColor(0, 0, 0, 110)
+ love.graphics.setColor(0, 0, 0, .45)
local width, height = love.graphics.getWidth(), love.graphics.getHeight()
love.graphics.rectangle("fill", 0, 0, width, height)
end)