summaryrefslogtreecommitdiff
path: root/amiga/plotters.c
diff options
context:
space:
mode:
Diffstat (limited to 'amiga/plotters.c')
-rwxr-xr-xamiga/plotters.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/amiga/plotters.c b/amiga/plotters.c
index 3c1a09099..88021ee29 100755
--- a/amiga/plotters.c
+++ b/amiga/plotters.c
@@ -113,6 +113,8 @@ void ami_init_layers(struct gui_globals *gg, ULONG width, ULONG height)
struct BitMap *friend = NULL;
depth = GetBitMapAttr(scrn->RastPort.BitMap, BMA_DEPTH);
+ LOG(("Screen depth = %d", depth));
+
#ifdef __amigaos4__
if(depth < 16) {
palette_mapped = true;
@@ -131,7 +133,10 @@ void ami_init_layers(struct gui_globals *gg, ULONG width, ULONG height)
gg->areabuf = AllocVecTagList(AREA_SIZE, NULL);
gg->tmprasbuf = AllocVecTagList(width * height, NULL);
- if(palette_mapped == true) {
+ if(palette_mapped == true) {
+#ifndef __amigaos4__
+ friend = scrn->RastPort.BitMap;
+#endif
gg->bm = AllocBitMap(width, height, depth, 0, friend);
} else {
if(depth == 32) friend = scrn->RastPort.BitMap;