From 194e71fc9a796391f88e9ec0ba5de6bb6cd96b94 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Sat, 8 May 2021 12:09:42 +0100 Subject: [PATCH] Use Unifont from system Forwarded: not-needed Gbp-Pq: Name 04_use_system_unifont.patch --- res/CMakeLists.txt | 1 - src/resource.cpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/res/CMakeLists.txt b/res/CMakeLists.txt index d893f93..85b6e49 100644 --- a/res/CMakeLists.txt +++ b/res/CMakeLists.txt @@ -259,7 +259,6 @@ add_resources( locales/uk_UA.po locales/ru_RU.po locales/zh_CN.po - fonts/unifont.hex.gz fonts/private/0-check-false.png fonts/private/1-check-true.png fonts/private/2-radio-false.png diff --git a/src/resource.cpp b/src/resource.cpp index 7b19081..e8a51bb 100644 --- a/src/resource.cpp +++ b/src/resource.cpp @@ -665,7 +665,7 @@ size_t BitmapFont::GetWidth(const std::string &str) { } BitmapFont BitmapFont::Create() { - BitmapFont Font = BitmapFont::From(LoadStringFromGzip("fonts/unifont.hex.gz")); + BitmapFont Font = BitmapFont::From(LoadString("fonts/unifont.hex")); // Unifont doesn't have a glyph for U+0020. Font.AddGlyph(0x0020, Pixmap::Create(Pixmap::Format::RGB, 8, 16)); Font.AddGlyph(0xE000, LoadPng("fonts/private/0-check-false.png")); -- 2.30.2