fix: use right names on conf file

This commit is contained in:
Kazhnuz 2020-04-05 18:49:40 +02:00
parent 5575b90271
commit f843d4f550

View file

@ -1,11 +1,11 @@
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.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.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.width = 424 -- The window width (number)
t.window.height = 240 -- The window height (number)