From 29a90d278e55d9df73535a672bac6198af5955c9 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 23 Sep 2006 23:15:34 +0000 Subject: [PATCH] Removed inline keyword. --- src/video/SDL_blit_A.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/SDL_blit_A.c b/src/video/SDL_blit_A.c index 71109a27a..923b1624a 100644 --- a/src/video/SDL_blit_A.c +++ b/src/video/SDL_blit_A.c @@ -1556,7 +1556,7 @@ static void BlitRGBtoRGBPixelAlpha(SDL_BlitInfo *info) #if GCC_ASMBLIT /* fast (as in MMX with prefetch) ARGB888->(A)RGB888 blending with pixel alpha */ -inline static void BlitRGBtoRGBPixelAlphaMMX3DNOW(SDL_BlitInfo *info) +static void BlitRGBtoRGBPixelAlphaMMX3DNOW(SDL_BlitInfo *info) { int width = info->d_width; int height = info->d_height;