From 9be4ed600825a4d6c2ae8f682d60d302e09fb204 Mon Sep 17 00:00:00 2001 From: Kevin Shanahan Date: Wed, 10 Oct 2012 19:03:21 +1030 Subject: [PATCH] screen: Make WritePCXfile static Function is local to this file only. Signed-off-by: Kevin Shanahan --- NQ/screen.c | 2 +- QW/client/gl_screen.c | 2 +- QW/client/screen.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NQ/screen.c b/NQ/screen.c index bc7e871..9a148cd 100644 --- a/NQ/screen.c +++ b/NQ/screen.c @@ -582,7 +582,7 @@ typedef struct { WritePCXfile ============== */ -void +static void WritePCXfile(char *filename, byte *data, int width, int height, int rowbytes, byte *palette) { diff --git a/QW/client/gl_screen.c b/QW/client/gl_screen.c index 172445c..e860526 100644 --- a/QW/client/gl_screen.c +++ b/QW/client/gl_screen.c @@ -676,7 +676,7 @@ SCR_ScreenShot_f(void) WritePCXfile ============== */ -void +static void WritePCXfile(char *filename, byte *data, int width, int height, int rowbytes, byte *palette, qboolean upload) { diff --git a/QW/client/screen.c b/QW/client/screen.c index 8f4ffdd..495c112 100644 --- a/QW/client/screen.c +++ b/QW/client/screen.c @@ -597,7 +597,7 @@ SCR_DrawConsole(void) WritePCXfile ============== */ -void +static void WritePCXfile(char *filename, byte *data, int width, int height, int rowbytes, byte *palette, qboolean upload) {