summaryrefslogtreecommitdiff
path: root/riscos/plotters.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-03-08 18:48:23 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-03-08 18:48:23 +0000
commit5412d7c1b04b4326d1fcd5a2e633ec0f6cff81de (patch)
treea0e1927bbe7f6fbf0ed6c01065801211c08e1902 /riscos/plotters.c
parentcebac17d4d1b98ab94ea0d66efdc80ef148252a7 (diff)
downloadnetsurf-5412d7c1b04b4326d1fcd5a2e633ec0f6cff81de.tar.gz
netsurf-5412d7c1b04b4326d1fcd5a2e633ec0f6cff81de.tar.bz2
Don't scale text plots in front end (RISC OS).
svn path=/trunk/netsurf/; revision=11937
Diffstat (limited to 'riscos/plotters.c')
-rw-r--r--riscos/plotters.c3
1 files changed, 1 insertions, 2 deletions
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);
}