minor fixes

This commit is contained in:
makiki 2024-08-20 12:31:49 +02:00
parent dfdbe9e48e
commit 97aa06931c
2 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,7 @@
function love.conf(t)
t.identity = nil -- The name of the save directory (string)
t.appendidentity = false -- Search files in source directory before save directory (boolean)
t.version = "11.5" -- The LÖVE version this game was made for (string)
t.version = "11.4" -- The LÖVE version this game was made for (string)
t.console = false -- Attach a console (boolean, Windows only)
t.accelerometerjoystick = true -- Enable the accelerometer on iOS and Android by exposing it as a Joystick (boolean)
t.externalstorage = false -- True to save files (and read from the save directory) in external storage on Android (boolean)

View File

@ -1,4 +1,3 @@
local bit = require "bit"
local Game = require "game"
require "util"