From 8735f1eff7c53a0e06142e5de273b326f4556470 Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Mon, 3 Nov 2003 02:43:10 +0000 Subject: [PATCH] Look for towns font rom in game directory then current directory instead of just current directory svn-id: r11083 --- scumm/scummvm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 83d7aac21ac..ede11952563 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -764,7 +764,7 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS _2byteWidth = 16; _2byteHeight = 16; //use FM Towns font rom, since game files don't have kanji font resources - if (fp.open("fmt_fnt.rom", "./", 1)) { //FIXME: use getGameDataPath()? + if (fp.open("fmt_fnt.rom", getGameDataPath(), 1) || fp.open("fmt_fnt.rom", "./", 1)) { _CJKMode = true; debug(2, "Loading FM Towns Kanji rom"); _2byteFontPtr = new byte[((_2byteWidth + 7) / 8) * _2byteHeight * numChar];