diff --git a/SDL_implementation/main.c b/SDL_implementation/main.c index d50571a..39813d2 100644 --- a/SDL_implementation/main.c +++ b/SDL_implementation/main.c @@ -75,7 +75,7 @@ SDL_AppResult SDL_AppInit(void **appstate, const int argc, char *argv[]) { SDL_LogError(SDL_LOG_CATEGORY_ERROR, "Failed to allocate memory for the font array: %s", SDL_GetError()); } - FILE* FontFile = fopen("/usr/share/fonts/TTF/JetBrainsMonoNerdFont-Regular.ttf", "rb"); + FILE* FontFile = fopen("resources/JetBrainsMonoNerdFont-Regular.ttf", "rb"); fseek(FontFile, 0, SEEK_END); const long FontSize = ftell(FontFile); diff --git a/resources/JetBrainsMonoNerdFont-Regular.ttf b/resources/JetBrainsMonoNerdFont-Regular.ttf new file mode 100644 index 0000000..235a07a Binary files /dev/null and b/resources/JetBrainsMonoNerdFont-Regular.ttf differ