From b7bfe746cbe48d4134d7ac0a776302b2beac4134 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 28 May 2024 13:34:42 +0200 Subject: [PATCH] updated the font name in fake-mobile --- fake-mobile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fake-mobile.cpp b/fake-mobile.cpp index cc8db758..67156829 100644 --- a/fake-mobile.cpp +++ b/fake-mobile.cpp @@ -70,7 +70,7 @@ bool rawdisplaystr(int x, int y, int shift, int size, const char *str, int color col.r >>= darken; col.g >>= darken; col.b >>= darken; if(!font[size]) - font[size] = TTF_OpenFont("VeraBd.ttf", size); + font[size] = TTF_OpenFont("DejaVuSans-Bold.ttf", size); SDL_Surface *txt = TTF_RenderText_Solid(font[size], str, col);