From eb3eb2b02d2ac0fa3b79d674d89a888b4fd9c815 Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Wed, 15 Aug 2012 20:40:37 +0200 Subject: [PATCH] NWN: Blacklist fnt_galahad14.dds, fixing Cyrillic fonts This closes issue #15. --- src/engines/nwn/nwn.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/engines/nwn/nwn.cpp b/src/engines/nwn/nwn.cpp index 96badb8898..01810b8eb4 100644 --- a/src/engines/nwn/nwn.cpp +++ b/src/engines/nwn/nwn.cpp @@ -227,6 +227,10 @@ void NWNEngine::initResources() { if (EventMan.quitRequested()) return; + // Blacklist the DDS version of the galahad14 font, because in versions of NWN coming + // with a Cyrillic one, the DDS file is still Latin. + ResMan.blacklist("fnt_galahad14", Aurora::kFileTypeDDS); + status("Loading main talk table"); TalkMan.addMainTable("dialog");