From ade86e496ea4bc27b6edab125bad9f5dc4bb3852 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 12 Oct 2013 13:11:13 +0100 Subject: Replace AllocVec with AllocVecTags. Remove some instances of MEMF_CLEAR where it is not necessary. --- amiga/font.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'amiga/font.c') diff --git a/amiga/font.c b/amiga/font.c index 310d8bec3..36c810428 100755 --- a/amiga/font.c +++ b/amiga/font.c @@ -383,7 +383,7 @@ struct ami_font_node *ami_font_open(const char *font) LOG(("Font cache miss: %s", font)); - nodedata = AllocVec(sizeof(struct ami_font_node), MEMF_PRIVATE | MEMF_CLEAR); + nodedata = AllocVecTagList(sizeof(struct ami_font_node), NULL); nodedata->font = OpenOutlineFont(font, &ami_diskfontlib_list, OFF_OPEN); if(!nodedata->font) -- cgit v1.2.3