aboutsummaryrefslogtreecommitdiff
path: root/system.lua
diff options
context:
space:
mode:
authorChris B <1029chris@gmail.com>2016-02-25 20:06:20 -0800
committerChris B <1029chris@gmail.com>2016-02-25 20:06:20 -0800
commit99e84c07306e678aa87eed8162fdf257be40701e (patch)
tree30bf1032cc29f8b030e9c35666a70b64b0e43e1c /system.lua
parente1e1f5d58f68ffc03e8010f164f8aa4d605f3b63 (diff)
Made clicking out of the start menu apply to any resolution
Diffstat (limited to 'system.lua')
-rw-r--r--system.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/system.lua b/system.lua
index cf97133..6a528d4 100644
--- a/system.lua
+++ b/system.lua
@@ -21,7 +21,7 @@ function drawSystem()
start.o = true
end
end
- if start.o == true and sys.mouse.p.p == true and sys.mouse.p.x > 255 or sys.mouse.p.y < 220 then
+ if start.o == true and sys.mouse.p.p == true and sys.mouse.p.x > 255 or sys.mouse.p.y < sys.h-380 then
start.o = false
end
drawLayer(7)