From 7d4cf8a47d3ea555554e59c451c786d77ec2f55b Mon Sep 17 00:00:00 2001 From: Vincent Wei Date: Mon, 3 May 2021 18:29:06 +0800 Subject: [PATCH] return void for GAL_SoftFillRect --- src/newgal/surface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/newgal/surface.c b/src/newgal/surface.c index 7f86e15e..3412a330 100644 --- a/src/newgal/surface.c +++ b/src/newgal/surface.c @@ -655,7 +655,7 @@ int GAL_UpperBlit (GAL_Surface *src, GAL_Rect *srcrect, return 0; } -static int GAL_SoftFillRect (GAL_Surface *dst, const GAL_Rect *dstrect, Uint32 color) +static void GAL_SoftFillRect (GAL_Surface *dst, const GAL_Rect *dstrect, Uint32 color) { int x, y; Uint8 *row;