From 04cfc613d49b27e10726a27ece4758d36e81198b Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Fri, 4 Sep 2020 23:14:47 -0400 Subject: [PATCH] Add font scaling --- turntable/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turntable/gui.py b/turntable/gui.py index d7797b9..aa5a982 100644 --- a/turntable/gui.py +++ b/turntable/gui.py @@ -108,7 +108,7 @@ def main(): screen.fill((0, 0, 0)) # Initialise font support pygame.font.init() - font = pygame.font.Font(pygame.font.get_default_font(), 15) + font = pygame.font.Font(pygame.font.get_default_font(), int(20*HEIGHT/720)) # Render the screen pygame.display.update()