diff --git a/conf.lua b/conf.lua index 6ef20a2..3742115 100644 --- a/conf.lua +++ b/conf.lua @@ -9,10 +9,11 @@ function love.conf(t) [5] = {1280, 768}, -- Nexus4 [6] = {1600, 900}, [7] = {1920, 1080}, -- most common desktop full screen - [8] = {2960, 1440}, -- Samsung Galaxy S8 + [8] = {2960, 1440}, -- Samsung Galaxy S8, Pixel 3 + [9] = {1480, 720}, -- scaled down 37:18 } t.window.title = "Hexpress" - t.window.width, t.window.height = unpack(resolutions[5]) + t.window.width, t.window.height = unpack(resolutions[7]) t.window.fullscreen = true t.window.resizable = false t.window.vsync = false