summaryrefslogtreecommitdiff
path: root/amiga/os3support.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-01-30 18:32:44 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-01-30 18:32:44 +0000
commit206639055572c11bcad0d71b22d325779dc83e95 (patch)
treedd968039af6ce4ed5e19c372e5e213da9beae24c /amiga/os3support.c
parent2893e30c4e1eebecf84636c35fd1bbc54698b1ed (diff)
downloadnetsurf-206639055572c11bcad0d71b22d325779dc83e95.tar.gz
netsurf-206639055572c11bcad0d71b22d325779dc83e95.tar.bz2
Fix bullet.library usage
Diffstat (limited to 'amiga/os3support.c')
-rw-r--r--amiga/os3support.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/amiga/os3support.c b/amiga/os3support.c
index a49534292..b2a7bf887 100644
--- a/amiga/os3support.c
+++ b/amiga/os3support.c
@@ -52,7 +52,7 @@ struct OutlineFont *OpenOutlineFont(STRPTR fileName, struct List *list, ULONG fl
STRPTR fname, otagpath;
struct BulletBase *BulletBase;
struct OutlineFont *of = NULL;
- struct GlyphEngine *eengine;
+ struct GlyphEngine *gengine;
otagpath = (STRPTR)ASPrintf("FONTS:%s.otag", fileName);
fh = Open(otagpath, MODE_OLDFILE);
@@ -116,9 +116,9 @@ struct OutlineFont *OpenOutlineFont(STRPTR fileName, struct List *list, ULONG fl
FreeVec(fname);
- eengine = OpenEngine();
+ gengine = OpenEngine();
- SetInfo(eengine,
+ SetInfo(gengine,
OT_OTagPath, otagpath,
OT_OTagList, buffer,
TAG_DONE);
@@ -127,7 +127,7 @@ struct OutlineFont *OpenOutlineFont(STRPTR fileName, struct List *list, ULONG fl
if(of == NULL) return NULL;
of->BulletBase = BulletBase;
- of->olf_EEngine = eengine;
+ of->GEngine = gengine;
of->OTagPath = otagpath;
of->olf_OTagList = buffer;
@@ -138,7 +138,7 @@ void CloseOutlineFont(struct OutlineFont *of, struct List *list)
{
struct BulletBase *BulletBase = of->BulletBase;
- CloseEngine(of->olf_EEngine);
+ CloseEngine(of->GEngine);
CloseLibrary(BulletBase);
FreeVec(of->OTagPath);