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-03-07 20:56:37 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:13:06 +0300
commita2424700e5790dbfa13c57c6650f97565870c6c5 (patch)
tree5c38f80a8c75ef7871839afeb515c72d4f984e86 /skin_generator
parent76ce74a6fb9f63182fa5a578cc8f5a52fbd3def4 (diff)
regenerated skin, for the letter 'G' was missing. fixed path to font in skin_generator.
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 dc5795487d..b475dc2b6e 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/dejavusans.ttf", "path to TrueType font file");
+DEFINE_string(fontFileName, "../../data/01_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 47844eaba3..56ab063c24 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(" 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ;:'\"/?.,`~!@#$%^&*()-_+=<>");
FT_Library lib;
FT_Error error;