It should work imo

This commit is contained in:
Squishy (C6H12O6+NaCl+H2O)
2024-05-25 00:24:18 +07:00
parent e9757ccb3c
commit eb8de7ffa7

View File

@@ -217,7 +217,7 @@ end
---@param e SCENE_onInput
function TouchConfigScene:onInputMove(e)
if (e.type == "mouse" and love.mouse.isDown(1)) or e.type == "touch" then
if e.type == "touch" or (e.type == "mouse" and love.mouse.isDown(1)) then
if VCTRL.drag(e.dx, e.dy, e.id or 1) then hasChanged = true end
end