Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrachytski <siarhei.rachytski@gmail.com>2011-01-16 00:42:28 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:10:06 +0300
commit1fa977fc6faa20c39c1af47f462eefe5d7e60829 (patch)
tree16c7d192cabbc65b01214aaa3aca42e04cddae13 /skin_generator
parentfc1e343b21019c8463f5a94272f5d7daa5df2988 (diff)
refactored additional information display.
Diffstat (limited to 'skin_generator')
-rw-r--r--skin_generator/main.cpp2
-rw-r--r--skin_generator/skin_generator.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/skin_generator/main.cpp b/skin_generator/main.cpp
index add5c9fc55..dc5795487d 100644
--- a/skin_generator/main.cpp
+++ b/skin_generator/main.cpp
@@ -8,7 +8,7 @@
#include "../3party/gflags/src/gflags/gflags.h"
-DEFINE_string(fontFileName, "../../data/fonts/DejaVu/DejaVuSans.ttf", "path to TrueType font file");
+DEFINE_string(fontFileName, "../../data/dejavusans.ttf", "path to TrueType font file");
DEFINE_string(symbolsFile, "../../data/results.unicode", "file with 2bytes symbols for which the skin should be generated");
DEFINE_string(symbolsDir, "../../data/styles/symbols", "directory with svg symbol files");
DEFINE_int32(symbolWidth, 24, "width of the rendered symbol");
diff --git a/skin_generator/skin_generator.cpp b/skin_generator/skin_generator.cpp
index a84ad71a51..47844eaba3 100644
--- a/skin_generator/skin_generator.cpp
+++ b/skin_generator/skin_generator.cpp
@@ -59,7 +59,7 @@ namespace tools
void SkinGenerator::processFont(string const & fileName, string const & skinName, vector<int8_t> const & fontSizes, int symbolScale)
{
- string symbols(" 0123456789abcdefjhigklmnopqrstuvwxyzABCDEFJHIJKLMNOPQRSTUVWXYZ;:'\"/?.,`~!@#$%^&*()-_+=");
+ string symbols(" 0123456789abcdefjhigklmnopqrstuvwxyzABCDEFJHIJKLMNOPQRSTUVWXYZ;:'\"/?.,`~!@#$%^&*()-_+=<>");
FT_Library lib;
FT_Error error;