From 0f18d046ff9999c2f047da6128753b5420ee06e6 Mon Sep 17 00:00:00 2001 From: "Squishy (C6H12O6+NaCl+H2O)" <106439598+SweetSea-ButImNotSweet@users.noreply.github.com> Date: Mon, 13 May 2024 18:37:51 +0700 Subject: [PATCH] Remove a redudant global variable --- main.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/main.lua b/main.lua index 4832135..d095b73 100644 --- a/main.lua +++ b/main.lua @@ -59,7 +59,6 @@ function love.load() love.resize(love.graphics.getWidth(), love.graphics.getHeight()) -- Now it's real time to load all stuffs! - highscores = {} require "load" -- Most game's resources are loaded in here require "scene" require "game.vctrl" -- VCTRL @@ -314,9 +313,7 @@ function love.joystickhat(joystick, hat, direction) end end -function love.focus(f) - return -end +function love.focus(f) end local TARGET_FPS = 60