From 24d56f60b34e6d63d8ec0ba79f469fe0c8ba7239 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Fri, 15 Mar 2024 11:50:09 +0800 Subject: [PATCH] * src/sfntfont-android.c (init_sfntfont_android): Fix SDK check. (cherry picked from commit c453c82dc6af2178ce10ffddccd9f38543ea6e88) --- src/sfntfont-android.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfntfont-android.c b/src/sfntfont-android.c index 94aedd0cd66..1ed394b9458 100644 --- a/src/sfntfont-android.c +++ b/src/sfntfont-android.c @@ -770,7 +770,7 @@ init_sfntfont_android (void) build_string ("Roboto")), Fcons (build_string ("DejaVu Serif"), build_string ("Noto Serif"))); - else if (api_level >= 15) + else if (api_level >= 14) /* Android 4.0 and later distribute Roboto in lieu of Droid Sans. */ Vsfnt_default_family_alist -- 2.39.5