summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-08-16 23:12:20 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-08-16 23:12:20 +0100
commit69a133969bf0aaaa64a928403ade8f1dc88a7ae0 (patch)
tree14ed6c9c1a64f1a2f9bff1271ac4f1cb4c953500 /amiga
parenta2edd98c19db5eb880d51bcc55c2fc32f0cc2035 (diff)
downloadnetsurf-69a133969bf0aaaa64a928403ade8f1dc88a7ae0.tar.gz
netsurf-69a133969bf0aaaa64a928403ade8f1dc88a7ae0.tar.bz2
Make the logging when opening outline fonts on OS3 a little more obvious.
Diffstat (limited to 'amiga')
-rw-r--r--amiga/os3support.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amiga/os3support.c b/amiga/os3support.c
index cea466c94..9e50d1a57 100644
--- a/amiga/os3support.c
+++ b/amiga/os3support.c
@@ -67,7 +67,7 @@ struct OutlineFont *OpenOutlineFont(STRPTR fileName, struct List *list, ULONG fl
/*\todo we should be opening the .font file too and checking
* for the magic bytes to indicate this is an outline font.
*/
- LOG("Unable to open %s", otagpath);
+ LOG("Unable to open OTAG %s", otagpath);
FreeVec(otagpath);
return NULL;
}
@@ -114,7 +114,7 @@ struct OutlineFont *OpenOutlineFont(STRPTR fileName, struct List *list, ULONG fl
BulletBase = OpenLibrary(fname, 0L);
if(BulletBase == NULL) {
- LOG("Unable to open %s", fname);
+ LOG("Unable to open font engine %s", fname);
FreeVec(buffer);
FreeVec(fname);
FreeVec(otagpath);