summaryrefslogtreecommitdiff
path: root/amiga/plotters.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-02-28 13:07:44 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-02-28 13:07:44 +0000
commit07c210b656a88488f62e080327ffb9a900a6c9ed (patch)
tree5ad5eb675142bf2703e6cfd34f7bfeaae5bffb2d /amiga/plotters.c
parent2ce332f1b07af89ce387ca24cc6471f97c80154b (diff)
parent5baf48859a71060bbe6e81335431fcda6c91a0f8 (diff)
downloadnetsurf-07c210b656a88488f62e080327ffb9a900a6c9ed.tar.gz
netsurf-07c210b656a88488f62e080327ffb9a900a6c9ed.tar.bz2
Fix hook functions for 68k
Add (partially working) bitmap fonts support
Diffstat (limited to 'amiga/plotters.c')
-rw-r--r--amiga/plotters.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/plotters.c b/amiga/plotters.c
index 443077b58..660dea74d 100644
--- a/amiga/plotters.c
+++ b/amiga/plotters.c
@@ -414,7 +414,7 @@ static bool ami_text(int x, int y, const char *text, size_t length,
aa = false;
ami_plot_setapen(glob->rp, fstyle->foreground);
- ami_unicode_text(glob->rp, text, length, fstyle, x, y, aa);
+ ami_font_unicode_text(glob->rp, text, length, fstyle, x, y, aa);
return true;
}