diff --git a/examples/conf.lua b/examples/conf.lua index aef0b73..71dc5e7 100644 --- a/examples/conf.lua +++ b/examples/conf.lua @@ -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)