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

@@ -92,7 +92,10 @@ function love.draw()
love.graphics.pop()
if DEBUG_showKey then
drawText("Pressed: "..(LastPressedKey or '[NONE]').." | Released: "..(LastReleasedKey or '[NONE]'),0,0,1000,"left")
drawText(
"Pressed: "..(LastPressedKey or '[NONE]').." | Released: "..(LastReleasedKey or '[NONE]'),
0,0,1000,"left"
)
end
end
@@ -349,7 +352,7 @@ local main_bg_cur_mino = 1
local main_bg_draw_frame = 0
local main_bg_last_color = nil
function mainBackground()
function MainBackground()
if SETTINGS["music"] and not SOUNDS["bgm_title"]:isPlaying() then
SOUNDS["bgm_title"]:setVolume(0.3)
SOUNDS["bgm_title"]:play()