找到游戏本地安装位置,Balatro\Content\Assets文件里,找到conf.lua文件,记事本打开,,
_RELEASE_MODE = true
_DEMO = false
function love.conf(t)
t.console = not _RELEASE_MODE
t.title = 'Balatro'
t.window.width = 1280
t.window.height = 768
t.window.fullscreen = false
t.window.minwidth = 100
t.window.minheight = 100
local support_kbm = love._os == "gdkpc"
t.modules.keyboard = support_kbm -- Enable the keyboard module (boolean)
t.modules.mouse = support_kbm -- Enable the mouse module (boolean)
end