aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llwindow/llwindowsdl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llwindow/llwindowsdl.cpp')
-rw-r--r--linden/indra/llwindow/llwindowsdl.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/llwindow/llwindowsdl.cpp b/linden/indra/llwindow/llwindowsdl.cpp
index 58090b3..6717f7b 100644
--- a/linden/indra/llwindow/llwindowsdl.cpp
+++ b/linden/indra/llwindow/llwindowsdl.cpp
@@ -2518,9 +2518,10 @@ std::vector<std::string> LLWindowSDL::getDynamicFallbackFontList()
2518 sortpat = FcNameParse((FcChar8*) sort_order.c_str()); 2518 sortpat = FcNameParse((FcChar8*) sort_order.c_str());
2519 if (sortpat) 2519 if (sortpat)
2520 { 2520 {
2521 FcResult dummyResult;
2521 // Sort the list of system fonts from most-to-least-desirable. 2522 // Sort the list of system fonts from most-to-least-desirable.
2522 fs = FcFontSort(NULL, sortpat, elide_unicode_coverage, 2523 fs = FcFontSort(NULL, sortpat, elide_unicode_coverage,
2523 NULL, NULL); 2524 NULL, &dummyResult);
2524 FcPatternDestroy(sortpat); 2525 FcPatternDestroy(sortpat);
2525 } 2526 }
2526 2527