summaryrefslogtreecommitdiff
path: root/amiga/plotters.c
diff options
context:
space:
mode:
Diffstat (limited to 'amiga/plotters.c')
-rwxr-xr-xamiga/plotters.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amiga/plotters.c b/amiga/plotters.c
index 34f596474..85376381d 100755
--- a/amiga/plotters.c
+++ b/amiga/plotters.c
@@ -254,7 +254,7 @@ void ami_plot_setapen(ULONG colour)
p96EncodeColor(RGBFF_A8B8G8R8, colour),
TAG_DONE);
} else {
- ULONG pen = ami_plot_obtain_pen(gg->shared_pens, colour);
+ ULONG pen = ami_plot_obtain_pen(glob->shared_pens, colour);
if(pen != -1) SetAPen(glob->rp, pen);
}
}
@@ -266,7 +266,7 @@ void ami_plot_setopen(ULONG colour)
p96EncodeColor(RGBFF_A8B8G8R8, colour),
TAG_DONE);
} else {
- ULONG pen = ami_plot_obtain_pen(gg->shared_pens, colour);
+ ULONG pen = ami_plot_obtain_pen(glob->shared_pens, colour);
if(pen != -1) SetOPen(glob->rp, pen);
}
}