summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2016-05-22 16:11:01 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2016-05-22 16:11:01 +0100
commit93be8d805e7e1f32638015770446476fef22ceac (patch)
tree160285b05d9fca37aea4e3f58032b8da85bd81eb
parent8c00da9ec6abafca3111aa6c488301664d6904db (diff)
downloadnetsurf-93be8d805e7e1f32638015770446476fef22ceac.tar.gz
netsurf-93be8d805e7e1f32638015770446476fef22ceac.tar.bz2
In 8-bit mode, when using a 1-bit mask, set the mask so only wholly transparent pixels are not plotted by default.
This is considered "more correct" than setting an arbitrary value when full alpha is not possible.
-rw-r--r--frontends/amiga/options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/amiga/options.h b/frontends/amiga/options.h
index 0c4db5c45..39e62dc10 100644
--- a/frontends/amiga/options.h
+++ b/frontends/amiga/options.h
@@ -51,7 +51,7 @@ NSOPTION_BOOL(download_notify, true)
NSOPTION_BOOL(faster_scroll, true)
NSOPTION_BOOL(scale_quality, false)
NSOPTION_INTEGER(dither_quality, 0)
-NSOPTION_INTEGER(mask_alpha, 50)
+NSOPTION_INTEGER(mask_alpha, 0)
NSOPTION_BOOL(ask_overwrite, true)
NSOPTION_INTEGER(printer_unit, 0)
NSOPTION_INTEGER(print_scale, 100)