From 327448d22fc91f69380fce82f9ed4ff01fe45250 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Mon, 11 Feb 2019 22:36:34 +0100 Subject: [PATCH] core: draw automaticall the menusystem over the scene --- sonic-boost.love/core/scenemanager.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/sonic-boost.love/core/scenemanager.lua b/sonic-boost.love/core/scenemanager.lua index a115367..5d403ca 100644 --- a/sonic-boost.love/core/scenemanager.lua +++ b/sonic-boost.love/core/scenemanager.lua @@ -61,6 +61,7 @@ function SceneManager:draw() self.controller.screen:apply() if (self.currentScene ~= nil) then self.currentScene:draw(dt) + self.currentScene.menusystem:draw() end self.controller.screen:cease() end