[Scummvm-git-logs] scummvm master -> b8652f7e0c62ceaea5935f052f4d4c53747c789c
bluegr
noreply at scummvm.org
Thu Jan 30 12:11:08 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
b8652f7e0c ENGINES: Use LiberationSans with ImGui instead of FreeSans
Commit: b8652f7e0c62ceaea5935f052f4d4c53747c789c
https://github.com/scummvm/scummvm/commit/b8652f7e0c62ceaea5935f052f4d4c53747c789c
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2025-01-30T14:11:05+02:00
Commit Message:
ENGINES: Use LiberationSans with ImGui instead of FreeSans
Changed paths:
engines/director/debugger/debugtools.cpp
engines/qdengine/debugger/debugtools.cpp
engines/twine/debugger/debugtools.cpp
diff --git a/engines/director/debugger/debugtools.cpp b/engines/director/debugger/debugtools.cpp
index 6cdc9787f37..1648cc36175 100644
--- a/engines/director/debugger/debugtools.cpp
+++ b/engines/director/debugger/debugtools.cpp
@@ -306,7 +306,7 @@ void onImGuiInit() {
_state = new ImGuiState();
- _state->_tinyFont = ImGui::addTTFFontFromArchive("FreeSans.ttf", 10.0f, nullptr, nullptr);
+ _state->_tinyFont = ImGui::addTTFFontFromArchive("LiberationSans-Regular.ttf", 10.0f, nullptr, nullptr);
_state->_archive.memEdit.ReadOnly = true;
diff --git a/engines/qdengine/debugger/debugtools.cpp b/engines/qdengine/debugger/debugtools.cpp
index 7470b98ba9a..4e3a01e5b79 100644
--- a/engines/qdengine/debugger/debugtools.cpp
+++ b/engines/qdengine/debugger/debugtools.cpp
@@ -507,7 +507,7 @@ void onImGuiInit() {
0
};
- io.FontDefault = ImGui::addTTFFontFromArchive("FreeSans.ttf", 16.0f, nullptr, cyrillic_ranges);;
+ io.FontDefault = ImGui::addTTFFontFromArchive("LiberationSans-Regular.ttf", 16.0f, nullptr, cyrillic_ranges);;
ImFontConfig icons_config;
icons_config.MergeMode = true;
diff --git a/engines/twine/debugger/debugtools.cpp b/engines/twine/debugger/debugtools.cpp
index 654a71b706b..e9098222a54 100644
--- a/engines/twine/debugger/debugtools.cpp
+++ b/engines/twine/debugger/debugtools.cpp
@@ -167,7 +167,7 @@ void onImGuiInit() {
static const ImWchar icons_ranges[] = {ICON_MIN_MS, ICON_MAX_MS, 0};
ImGui::addTTFFontFromArchive("MaterialSymbolsSharp.ttf", 16.f, &icons_config, icons_ranges);
- _tinyFont = ImGui::addTTFFontFromArchive("FreeSans.ttf", 10.0f, nullptr, nullptr);
+ _tinyFont = ImGui::addTTFFontFromArchive("LiberationSans-Regular.ttf", 10.0f, nullptr, nullptr);
_logger = new ImGuiEx::ImGuiLogger;
More information about the Scummvm-git-logs
mailing list