mirror of
https://github.com/linux-man/LoveFrames.git
synced 2024-11-18 16:04:22 +00:00
Merge pull request #1 from mutantant/MacOS_Error_Fix
Removed "lmeta" "rmeta" check for keyboard in utils which crashed MacOS
This commit is contained in:
commit
5d2bbd3695
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
|
||||||
|
\.DS_Store
|
@ -360,8 +360,7 @@ end
|
|||||||
--]]---------------------------------------------------------
|
--]]---------------------------------------------------------
|
||||||
function loveframes.IsCtrlDown()
|
function loveframes.IsCtrlDown()
|
||||||
if love._os == "OS X" then
|
if love._os == "OS X" then
|
||||||
return love.keyboard.isDown("lmeta") or love.keyboard.isDown("rmeta") or
|
return love.keyboard.isDown("lgui") or love.keyboard.isDown("rgui")
|
||||||
love.keyboard.isDown("lgui") or love.keyboard.isDown("rgui")
|
|
||||||
end
|
end
|
||||||
return love.keyboard.isDown("lctrl") or love.keyboard.isDown("rctrl")
|
return love.keyboard.isDown("lctrl") or love.keyboard.isDown("rctrl")
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user