From b4ad348003feccc14e9aa4fe71233a69f76cf454 Mon Sep 17 00:00:00 2001 From: Chris B <1029chris@gmail.com> Date: Tue, 14 Jun 2016 20:15:07 -0700 Subject: Fixed settings menu bug --- var.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'var.lua') diff --git a/var.lua b/var.lua index 593032e..fed40ef 100644 --- a/var.lua +++ b/var.lua @@ -211,7 +211,7 @@ function loadVar() stre[1].hl = true modes = love.window.getFullscreenModes() for i=1,#modes do - if modes[i].width >= 1000 and modes[i].height >= 720 and i <= 10 then + if modes[i].width >= 1000 and modes[i].height >= 720 and i <= 9 then table.insert(stre, { title = modes[i].width .. "x" .. modes[i].height, hl = false, -- cgit