summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--riscos/font.c5
-rw-r--r--riscos/plotters.c3
2 files changed, 3 insertions, 5 deletions
diff --git a/riscos/font.c b/riscos/font.c
index a2cf561fb..ce9e70a99 100644
--- a/riscos/font.c
+++ b/riscos/font.c
@@ -385,12 +385,11 @@ bool nsfont_split(const plot_font_style_t *fstyle,
* \param length length of string
* \param x x coordinate
* \param y y coordinate
- * \param scale scale to apply to font size
* \return true on success, false on error and error reported
*/
bool nsfont_paint(const plot_font_style_t *fstyle, const char *string,
- size_t length, int x, int y, float scale)
+ size_t length, int x, int y)
{
const char *font_family;
unsigned int font_size;
@@ -401,7 +400,7 @@ bool nsfont_paint(const plot_font_style_t *fstyle, const char *string,
if (font_size == 0)
return true;
- code = rufl_paint(font_family, font_style, font_size * scale,
+ code = rufl_paint(font_family, font_style, font_size,
string, length, x, y,
print_active ? 0 : rufl_BLEND_FONT);
if (code != rufl_OK) {
diff --git a/riscos/plotters.c b/riscos/plotters.c
index 8d489fc0f..4d20910b4 100644
--- a/riscos/plotters.c
+++ b/riscos/plotters.c
@@ -407,8 +407,7 @@ bool ro_plot_text(int x, int y, const char *text, size_t length,
return nsfont_paint(fstyle, text, length,
ro_plot_origin_x + x * 2,
- ro_plot_origin_y - y * 2,
- ro_plot_scale);
+ ro_plot_origin_y - y * 2);
}