summaryrefslogtreecommitdiff
path: root/atari/plot
diff options
context:
space:
mode:
Diffstat (limited to 'atari/plot')
-rwxr-xr-xatari/plot/plot.c6
-rwxr-xr-xatari/plot/plot.h1
2 files changed, 7 insertions, 0 deletions
diff --git a/atari/plot/plot.c b/atari/plot/plot.c
index 80eda6949..19c34e257 100755
--- a/atari/plot/plot.c
+++ b/atari/plot/plot.c
@@ -1953,6 +1953,12 @@ VdiHdl plot_get_vdi_handle(void)
return(atari_plot_vdi_handle);
}
+long plot_get_flags(void)
+{
+ return(atari_plot_flags);
+}
+
+
bool plot_get_clip(struct rect * out)
{
out->x0 = view.clipping.x0;
diff --git a/atari/plot/plot.h b/atari/plot/plot.h
index 3c9461d69..d00bbc669 100755
--- a/atari/plot/plot.h
+++ b/atari/plot/plot.h
@@ -112,6 +112,7 @@ bool plot_get_clip(struct rect * out);
void plot_get_clip_grect(GRECT * out);
bool plot_clip(const struct rect *clip);
VdiHdl plot_get_vdi_handle(void);
+long plot_get_flags(void);
bool plot_rectangle( int x0, int y0, int x1, int y1,const plot_style_t *style );
bool plot_line( int x0, int y0, int x1, int y1, const plot_style_t *style );
bool plot_blit_bitmap(struct bitmap * bmp, int x, int y,