fix: use right names on conf file
This commit is contained in:
parent
5575b90271
commit
f843d4f550
1 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
||||||
function love.conf(t)
|
function love.conf(t)
|
||||||
t.identity = "space.kazhnuz.birb" -- The name of the save directory (string)
|
t.identity = "city.kobold.Birb" -- The name of the save directory (string)
|
||||||
t.version = "11.1" -- The LÖVE version this game was made for (string)
|
t.version = "11.1" -- The LÖVE version this game was made for (string)
|
||||||
t.console = false -- Attach a console (boolean, Windows only)
|
t.console = false -- Attach a console (boolean, Windows only)
|
||||||
t.accelerometerjoystick = false -- Enable the accelerometer on iOS and Android by exposing it as a Joystick (boolean)
|
t.accelerometerjoystick = false -- Enable the accelerometer on iOS and Android by exposing it as a Joystick (boolean)
|
||||||
t.gammacorrect = false -- Enable gamma-correct rendering, when supported by the system (boolean)
|
t.gammacorrect = false -- Enable gamma-correct rendering, when supported by the system (boolean)
|
||||||
|
|
||||||
t.window.title = "birb Example" -- The window title (string)
|
t.window.title = "Birb Engine Examples" -- The window title (string)
|
||||||
t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
|
t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
|
||||||
t.window.width = 424 -- The window width (number)
|
t.window.width = 424 -- The window width (number)
|
||||||
t.window.height = 240 -- The window height (number)
|
t.window.height = 240 -- The window height (number)
|
||||||
|
|
Loading…
Reference in a new issue