summaryrefslogtreecommitdiff
path: root/amiga/plotters.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-02-02 18:53:16 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-02-02 18:53:16 +0000
commit25a4cce542a9b4d0d9544d959f0c73021e7f3caf (patch)
tree7dbc37b3565be56fc5984819ddf94c26b14edeb9 /amiga/plotters.c
parent852527a12f799f800dcba62b08a45c7329225da2 (diff)
downloadnetsurf-25a4cce542a9b4d0d9544d959f0c73021e7f3caf.tar.gz
netsurf-25a4cce542a9b4d0d9544d959f0c73021e7f3caf.tar.bz2
Experimentally enable P96 on the OS3 build
Diffstat (limited to 'amiga/plotters.c')
-rw-r--r--amiga/plotters.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/amiga/plotters.c b/amiga/plotters.c
index f680e43b5..405e512f0 100644
--- a/amiga/plotters.c
+++ b/amiga/plotters.c
@@ -101,13 +101,12 @@ void ami_init_layers(struct gui_globals *gg, ULONG width, ULONG height)
depth = GetBitMapAttr(scrn->RastPort.BitMap, BMA_DEPTH);
LOG(("Screen depth = %d", depth));
-#ifdef __amigaos4__
if(depth < 16) {
palette_mapped = true;
} else {
palette_mapped = false;
}
-#else
+#if 0
palette_mapped = true; /* only supporting palette mapped screens on OS3 for now */
if(depth > 8) depth = 8;
#endif