forked from darkplace-dr/DarkPlaceRebirth-Kristal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.lua
33 lines (28 loc) · 1.02 KB
/
conf.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
function love.conf(t)
-- If you intend to create a standalone game from this engine, make sure to also:
-- * Change "identity", "window.title" here
-- * Replace icon.png, bigicon.png with your own
-- * (If you wish to create a Windows executable) replace icon.ico
-- and recompile icon.rc with rc or windres
--
-- This is to:
-- * Make sure user settings for the actual engine is not loaded;
-- * Make sure the name and icon of the game is correctly presented during startup.
-- (We can only automatically adjust window branding when loading finishes.)
local major, minor, revision, codename = love.getVersion()
t.identity = "dpr"
-- TODO: hmm
t.version = "11.0"
t.window.title = "Dark Place: REBIRTH"
t.window.icon = "icon.png"
t.window.width = 640
t.window.height = 480
if major >= 12 then
t.highdpi = true
t.usedpiscale = false
else
t.window.highdpi = true
t.window.usedpiscale = false
end
t.externalstorage = true
end