fix: add forgotten nullcheck
This commit is contained in:
parent
538b9bd093
commit
fe467119d2
1 changed files with 6 additions and 2 deletions
|
@ -104,11 +104,15 @@ end
|
|||
-- Add send keys functions to the scene
|
||||
|
||||
function SceneManager:keypressed( key, scancode, isrepeat )
|
||||
self.currentScene:keypressed( key, scancode, isrepeat )
|
||||
if (self.currentScene ~= nil) then
|
||||
self.currentScene:keypressed( key, scancode, isrepeat )
|
||||
end
|
||||
end
|
||||
|
||||
function SceneManager:keyreleased( key )
|
||||
self.currentScene:keyreleased( key )
|
||||
if (self.currentScene ~= nil) then
|
||||
self.currentScene:keyreleased( key )
|
||||
end
|
||||
end
|
||||
|
||||
-- DRAW FUNCTIONS
|
||||
|
|
Loading…
Reference in a new issue