From 249a170acef352b40c7fa67fe65bdc62cbae4ff1 Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 14 Nov 2004 19:44:06 +0000 Subject: (svn r607) -Patch: [ 985102 ] static cleanup Thanks to lvoge --- screenshot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'screenshot.c') diff --git a/screenshot.c b/screenshot.c index 3b17028dd..7033f47de 100644 --- a/screenshot.c +++ b/screenshot.c @@ -374,7 +374,7 @@ void SetScreenshotFormat(int i) } // screenshot generator that dumps the current video buffer -void CurrentScreenCallback(void *userdata, byte *buf, uint y, uint pitch, uint n) +static void CurrentScreenCallback(void *userdata, byte *buf, uint y, uint pitch, uint n) { for (; n > 0; --n) { @@ -387,7 +387,7 @@ void CurrentScreenCallback(void *userdata, byte *buf, uint y, uint pitch, uint n extern void ViewportDoDraw(ViewPort *vp, int left, int top, int right, int bottom); // generate a large piece of the world -void LargeWorldCallback(void *userdata, byte *buf, uint y, uint pitch, uint n) +static void LargeWorldCallback(void *userdata, byte *buf, uint y, uint pitch, uint n) { ViewPort *vp = (ViewPort *)userdata; DrawPixelInfo dpi, *old_dpi; -- cgit v1.2.3-54-g00ecf