From df845be116f233b1c47bf63b99fbf0b7359039e1 Mon Sep 17 00:00:00 2001 From: Martin Kiewitz Date: Fri, 29 Jan 2016 14:07:48 +0100 Subject: AGI: added/changed font warnings --- engines/agi/agi.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'engines') diff --git a/engines/agi/agi.cpp b/engines/agi/agi.cpp index 9362ceff70..695e743a1c 100644 --- a/engines/agi/agi.cpp +++ b/engines/agi/agi.cpp @@ -397,6 +397,7 @@ void AgiBase::loadFontMickey() { if (!interpreterFile.open("mickey.exe")) { // Continue, if file not found + warning("Could not open file 'mickey.exe' for Mickey Mouse font"); return; } @@ -404,7 +405,7 @@ void AgiBase::loadFontMickey() { if (interpreterFileSize != 55136) { // unexpected file size interpreterFile.close(); - warning("mickey.exe unexpected file size"); + warning("File 'mickey.exe': unexpected file size"); return; } interpreterFile.seek(32476); // offset of font data @@ -530,7 +531,7 @@ void AgiBase::loadFontAppleIIgs() { if (!fontFile.open("agifont")) { // Continue, // This also happens when the user selected Apple IIgs as render for the palette for non-AppleIIgs games - warning("could not open agifont for Apple IIgs font"); + warning("Could not open file 'agifont' for Apple IIgs font"); return; } -- cgit v1.2.3