From 8824908b696278f34891d95c15e519710ea0d18d Mon Sep 17 00:00:00 2001 From: talha Date: Fri, 21 Jun 2024 00:33:35 +0500 Subject: Setup font loading on linux --- source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/main.cpp b/source/main.cpp index 6df5451..3458820 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -378,7 +378,7 @@ int main(int argc, char* argv[]) return -1; } - FT_Error error = FT_New_Face(ft_lib, "assets/fonts/Arial.ttf", 0, &face); + FT_Error error = FT_New_Face(ft_lib, "assets/fonts/Roboto.ttf", 0, &face); if (error == FT_Err_Unknown_File_Format) { printf("Error: Font Loading Failed. The font format is unsupported.\n"); -- cgit v1.2.3