nixpkgs/pkgs/games/classicube/font-location.patch

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
505 B
Diff
Raw Normal View History

diff --git a/src/Platform_Posix.c b/src/Platform_Posix.c
index bca992d..3540afa 100644
--- a/src/Platform_Posix.c
+++ b/src/Platform_Posix.c
@@ -440,9 +440,8 @@ void Platform_LoadSysFonts(void) {
String_FromConst("/Library/Fonts")
};
#else
2022-10-10 22:56:30 +00:00
- static const cc_string dirs[] = {
- String_FromConst("/usr/share/fonts"),
- String_FromConst("/usr/local/share/fonts")
2022-10-10 22:56:30 +00:00
+ static const cc_string dirs[] = {
+ String_FromConst("%NIXPKGS_FONT_PATH%")
};
#endif
for (i = 0; i < Array_Elems(dirs); i++) {