From 45280d035afe29dc1f8971eac713ea1fdb64bfb5 Mon Sep 17 00:00:00 2001 From: Marisa-Chan Date: Mon, 29 Dec 2014 15:30:12 +0600 Subject: ZVISION: Fix font error message condition --- engines/zvision/zvision.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/zvision/zvision.cpp b/engines/zvision/zvision.cpp index 88cc1e2fea..10e0aaedc4 100644 --- a/engines/zvision/zvision.cpp +++ b/engines/zvision/zvision.cpp @@ -255,7 +255,7 @@ Common::Error ZVision::run() { _saveManager->loadGame(ConfMan.getInt("save_slot")); // Before starting, make absolutely sure that the user has copied the needed fonts - if (!Common::File::exists("arial.ttf") && !Common::File::exists("FreeSans.ttf")) { + if (!Common::File::exists("arial.ttf") && !Common::File::exists("FreeSans.ttf") && !_searchManager->hasFile("arial.ttf") && !_searchManager->hasFile("FreeSans.ttf") ) { GUI::MessageDialog dialog( "Before playing this game, you'll need to copy the required " "fonts into ScummVM's extras directory, or into the game directory. " -- cgit v1.2.3