summaryrefslogtreecommitdiff
path: root/amiga/plotters.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2013-10-26 19:44:21 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2013-10-26 19:44:21 +0100
commitef24e5ce9ef10d121c6ab95c2a124a71f5943998 (patch)
tree1fa87d4c401d9919dd595202d3a6e424856051b0 /amiga/plotters.c
parentf6b1227c8dff395fc30271b71a150ae3501ba68a (diff)
downloadnetsurf-ef24e5ce9ef10d121c6ab95c2a124a71f5943998.tar.gz
netsurf-ef24e5ce9ef10d121c6ab95c2a124a71f5943998.tar.bz2
Fix bitmap offsets in direct render mode by forcing use of BltBitMap
Diffstat (limited to 'amiga/plotters.c')
-rwxr-xr-xamiga/plotters.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/amiga/plotters.c b/amiga/plotters.c
index 42b523911..6683fc58b 100755
--- a/amiga/plotters.c
+++ b/amiga/plotters.c
@@ -690,7 +690,8 @@ static bool ami_bitmap(int x, int y, int width, int height, struct bitmap *bitma
LOG(("[ami_plotter] ami_bitmap() got native bitmap"));
#endif
- if((GfxBase->LibNode.lib_Version >= 53) && (palette_mapped == false))
+ if((GfxBase->LibNode.lib_Version >= 53) && (palette_mapped == false) &&
+ (nsoption_bool(direct_render) == false))
{
#ifdef __amigaos4__
uint32 comptype = COMPOSITE_Src_Over_Dest;