This commit is contained in:
Squishy (C6H12O6+NaCl+H2O)
2024-05-21 21:50:48 +07:00
parent 5cf9deb9eb
commit 68d4e04142
2 changed files with 16 additions and 14 deletions

View File

@@ -83,9 +83,9 @@ end
---@param e SCENE_onInput
function TouchConfigScene:onInputRelease(e)
if e.type == "mouse" then
BUTTON.release(buttonList, e.x, e.y)
elseif e.type == "touch" then
BUTTON.release(buttonList, e.x, e.y, true)
elseif e.type == "touch" then
BUTTON.release(buttonList, e.x, e.y)
end
end