Removing unnecessary `local mino = {...}`

This commit is contained in:
Squishy (C6H12O6+NaCl+H2O)
2024-04-19 22:32:03 +07:00
parent 35edf8fbd6
commit 9cb3521f53
7 changed files with 12 additions and 20 deletions

View File

@@ -1,9 +1,7 @@
require 'funcs'
local ReplaySelectScene = SCENE:extend()
ReplaySelectScene.title = "Replay"
local minos = {'R_d', 'O_d', 'Y_d', 'G_d', 'C_d', 'B_d', 'M_d'}
require 'funcs'
function ReplaySelectScene:new()
self:initList()
@@ -43,7 +41,7 @@ function ReplaySelectScene:initList()
end
function ReplaySelectScene:render()
mainBackground()
MainBackground()
love.graphics.setColor(0.4, 1, 1, 0.5)
love.graphics.rectangle("fill", 0, 20 + 20 * self.replay_select, 640, 22)