fixed font for level info screen
authorHolger Schemel <holger.schemel@virtion.de>
Tue, 15 Oct 2024 00:08:43 +0000 (02:08 +0200)
committerHolger Schemel <holger.schemel@virtion.de>
Tue, 15 Oct 2024 00:08:43 +0000 (02:08 +0200)
src/screens.c

index c4306715ee7a5e8a545c780226ffc4e6b6c0d1c1..850a24e5807c4636560db67691a76e41214ed854 100644 (file)
@@ -4154,15 +4154,15 @@ static void DrawInfoScreen_GenericScreen(int screen_nr, int num_screens, int use
 
     // if chars set to "-1", automatically determine by text and font width
     if (tmi->chars == -1)
-      tmi->chars = tmi->width / getFontWidth(tmi->font);
+      tmi->chars = tmi->width / getFontWidth(font);
     else
-      tmi->width = tmi->chars * getFontWidth(tmi->font);
+      tmi->width = tmi->chars * getFontWidth(font);
 
     // if lines set to "-1", automatically determine by text and font height
     if (tmi->lines == -1)
-      tmi->lines = tmi->height / getFontHeight(tmi->font);
+      tmi->lines = tmi->height / getFontHeight(font);
     else
-      tmi->height = tmi->lines * getFontHeight(tmi->font);
+      tmi->height = tmi->lines * getFontHeight(font);
 
     FreeWrappedText(wrapped_text);