From 957f9dc7c8f98b7c81fa1cb93491095f5e10251f Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Mon, 23 Jul 2012 02:34:21 +0200 Subject: renamed plot functions (use plot_ prefix) --- atari/plot/plot.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/atari/plot/plot.c b/atari/plot/plot.c index 8983d15b4..1d12ebab2 100755 --- a/atari/plot/plot.c +++ b/atari/plot/plot.c @@ -232,7 +232,7 @@ inline static void vsf_rgbcolor(short vdih, uint32_t cin) /* Get current visible coords */ -inline static void plotter_get_visible_grect(GRECT * out) +inline static void plot_get_visible_grect(GRECT * out) { out->g_x = view.vis_x; out->g_y = view.vis_y; @@ -353,7 +353,7 @@ bool plot_copy_rect(GRECT src, GRECT dst) GRECT vis; /* clip to visible rect, only needed for onscreen renderer: */ - plotter_get_visible_grect(&vis ); + plot_get_visible_grect(&vis ); if( !rc_intersect(&vis, &src) ) return(true); @@ -1404,7 +1404,7 @@ bool plot_blit_bitmap(struct bitmap * bmp, int x, int y, // clip the visible rectangle of the plot area // this is the area of the plotter which falls into // screen region: - plotter_get_visible_grect(&vis); + plot_get_visible_grect(&vis); if( !rc_intersect( &vis, &off) ) { return(true); } -- cgit v1.2.3