Changed Display Gamemode to Debug Info

Cambridge version will display at all times if on
This commit is contained in:
Ishaan Bhardwaj
2021-10-08 20:06:36 -04:00
parent 9611fc31bf
commit bc54bc57b6
2 changed files with 6 additions and 4 deletions

View File

@@ -75,9 +75,11 @@ function love.draw()
scene:render()
love.graphics.setFont(font_3x5_2)
love.graphics.setColor(1, 1, 1, 1)
love.graphics.printf(version, 0, 460, 635, "right")
if config.gamesettings.display_gamemode == 1 or scene.title == "Title" then
love.graphics.setFont(font_3x5_2)
love.graphics.setColor(1, 1, 1, 1)
love.graphics.printf(version, 0, 460, 635, "right")
end
love.graphics.pop()