Commit 21a2e0c787cb3bbbca5dcab9320bd3e3dedbe5ac

Sylvain Becker 2020-02-25T06:53:51

Fix compilation C90 mixed declarations and code (Thanks Cameron Gutman !)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/src/video/SDL_surface.c b/src/video/SDL_surface.c
index 015a135..3795b94 100644
--- a/src/video/SDL_surface.c
+++ b/src/video/SDL_surface.c
@@ -1052,8 +1052,8 @@ SDL_ConvertSurface(SDL_Surface * surface, const SDL_PixelFormat * format,
 
         /* Set opaque and backup palette alpha values */
         if (set_opaque) {
-            palette_saved_alpha = SDL_stack_alloc(Uint8, surface->format->palette->ncolors);
             int i;
+            palette_saved_alpha = SDL_stack_alloc(Uint8, surface->format->palette->ncolors);
             for (i = 0; i < surface->format->palette->ncolors; i++) {
                 palette_saved_alpha[i] = surface->format->palette->colors[i].a;
                 surface->format->palette->colors[i].a = SDL_ALPHA_OPAQUE;