- Revert changes in SETTING table
- Use exclusive fullscreen on mobile devices
This commit is contained in:
2
conf.lua
2
conf.lua
@@ -45,7 +45,7 @@ function love.conf(t)
|
|||||||
W.x,W.y=nil,nil -- Position of the window
|
W.x,W.y=nil,nil -- Position of the window
|
||||||
W.borderless=MOBILE -- Display window frame
|
W.borderless=MOBILE -- Display window frame
|
||||||
W.resizable=not MOBILE -- Whether window is resizable
|
W.resizable=not MOBILE -- Whether window is resizable
|
||||||
W.fullscreentype="exclusive" -- Fullscreen type
|
W.fullscreentype=MOBILE and "exclusive" or "desktop" -- Fullscreen type
|
||||||
if portrait then
|
if portrait then
|
||||||
W.width,W.height=720,1280
|
W.width,W.height=720,1280
|
||||||
W.minwidth,W.minheight=360,640
|
W.minwidth,W.minheight=360,640
|
||||||
|
|||||||
@@ -652,7 +652,7 @@ do-- Userdata tables
|
|||||||
showSpike=true,
|
showSpike=true,
|
||||||
highCam=true,
|
highCam=true,
|
||||||
nextPos=true,
|
nextPos=true,
|
||||||
fullscreen=MOBILE,
|
fullscreen=true,
|
||||||
portrait=false,
|
portrait=false,
|
||||||
msaa=0,
|
msaa=0,
|
||||||
bg='on',
|
bg='on',
|
||||||
|
|||||||
Reference in New Issue
Block a user