decouple menu font from output buffer

This commit is contained in:
Kartik K. Agaram 2023-12-30 21:27:06 -08:00
parent 04d1c1df65
commit dc1109202b
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
draw_menu = function()
love.graphics.setFont(Font)
App.color(Menu_background)
love.graphics.rectangle('fill', 0,0, App.screen.width, Menu_bottom)
-- settings button on right
@ -52,4 +53,4 @@ draw_menu = function()
if Show_menu == 'settings' then
draw_settings_menu()
end
end
end