From 974f53679449da36b10bdccb3241b1f36f0f1936 Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Thu, 22 Mar 2012 21:34:13 +0000 Subject: Fixed declarations of set_std_pixel / get_std_pixel svn path=/trunk/netsurf/; revision=13553 --- atari/plot/plotter_vdi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'atari') diff --git a/atari/plot/plotter_vdi.c b/atari/plot/plotter_vdi.c index 2a722f5e0..c2de42cf8 100755 --- a/atari/plot/plotter_vdi.c +++ b/atari/plot/plotter_vdi.c @@ -1002,7 +1002,7 @@ static void snapshot_destroy( GEM_PLOTTER self ) } } -inline void set_stdpx( MFDB * dst, int wdplanesz, int x, int y, unsigned char val ) +static inline void set_stdpx( MFDB * dst, int wdplanesz, int x, int y, unsigned char val ) { short * buf; short whichbit = (1<<(15-(x%16))); @@ -1034,7 +1034,7 @@ inline void set_stdpx( MFDB * dst, int wdplanesz, int x, int y, unsigned char va *buf = (val&(1<<7)) ? ((*buf)|(whichbit)) : ((*buf)&~(whichbit)); } -inline unsigned char get_stdpx(MFDB * dst, int wdplanesz, int x, int y ) +static inline unsigned char get_stdpx(MFDB * dst, int wdplanesz, int x, int y ) { unsigned char ret=0; short * buf; -- cgit v1.2.3