From 935ffb4839641f137ac9566526910a370503770e Mon Sep 17 00:00:00 2001 From: dolphin6k Date: Sun, 18 Dec 2022 00:07:11 +0900 Subject: [PATCH] Forgot to multiply the score by 10 --- src/dirwalk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dirwalk.c b/src/dirwalk.c index 0e9eb63b7..85737e40f 100644 --- a/src/dirwalk.c +++ b/src/dirwalk.c @@ -260,7 +260,7 @@ void loadfont_callback(SDL_Surface * screen, SDL_Texture * texture, font, /* distinct line-like characters (e.g., 'l' (lowercase elle) vs. '1' (one) vs. 'I' (capital aye)) */ gettext("1Il|") ); - user_font_styles[num_font_styles]->score += + user_font_styles[num_font_styles]->score += 10 * charset_works( font, /* put locale specific characters to the translation for this string to score up the fonts supporting those characters. */ gettext("ABC...xyz") );