Skip to content

Commit

Permalink
Add 37:18 resolutions to conf
Browse files Browse the repository at this point in the history
  • Loading branch information
jmiskovic committed Apr 13, 2022
1 parent beedb8e commit 812eff1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions conf.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 812eff1

Please sign in to comment.