From 97aa06931c0c02234ca995519e06b9122d407d5d Mon Sep 17 00:00:00 2001 From: makiki Date: Tue, 20 Aug 2024 12:31:49 +0200 Subject: [PATCH] minor fixes --- conf.lua | 2 +- main.lua | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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"