summaryrefslogtreecommitdiff
path: root/amiga/plotters.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2012-08-05 10:48:36 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2012-08-05 10:48:36 +0100
commit34154ebb99c9ce199e6c9c9ed5993e017023c697 (patch)
treeadb2f8796762704d9f2a2ba587ac4f102a634715 /amiga/plotters.c
parent1ceced6e673cd9e573bd1a0475fa8357296b3289 (diff)
downloadnetsurf-34154ebb99c9ce199e6c9c9ed5993e017023c697.tar.gz
netsurf-34154ebb99c9ce199e6c9c9ed5993e017023c697.tar.bz2
Disable anti-aliasing for palette-mapped modes
Diffstat (limited to 'amiga/plotters.c')
-rwxr-xr-xamiga/plotters.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/plotters.c b/amiga/plotters.c
index e69e05618..c581711b0 100755
--- a/amiga/plotters.c
+++ b/amiga/plotters.c
@@ -521,7 +521,7 @@ bool ami_text(int x, int y, const char *text, size_t length,
#endif
ami_plot_setapen(fstyle->foreground);
- ami_unicode_text(glob->rp,text,length,fstyle,x,y);
+ ami_unicode_text(glob->rp, text, length, fstyle, x, y, !palette_mapped);
return true;
}