diff --git a/conf.lua b/conf.lua index ff52561..c7cc37d 100644 --- a/conf.lua +++ b/conf.lua @@ -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) diff --git a/main.lua b/main.lua index 70062f3..6eefd70 100644 --- a/main.lua +++ b/main.lua @@ -1,4 +1,3 @@ -local bit = require "bit" local Game = require "game" require "util"