summaryrefslogtreecommitdiff
path: root/amiga/plotters.c
diff options
context:
space:
mode:
Diffstat (limited to 'amiga/plotters.c')
-rwxr-xr-xamiga/plotters.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/amiga/plotters.c b/amiga/plotters.c
index f2ae1cc4e..adbdf39e2 100755
--- a/amiga/plotters.c
+++ b/amiga/plotters.c
@@ -400,10 +400,10 @@ bool ami_clip(int x0, int y0, int x1, int y1)
return true;
}
-bool ami_text(int x, int y, const struct css_style *style,
- const char *text, size_t length, colour bg, colour c)
+bool ami_text(int x, int y, const char *text, size_t length,
+ const plot_font_style_t *fstyle)
{
- ami_unicode_text(&glob->rp,text,length,style,x,y,c);
+ ami_unicode_text(&glob->rp,text,length,fstyle,x,y);
return true;
}