Fix warning drop const qualifier

This commit is contained in:
Sylvain
2023-03-08 21:18:02 +01:00
committed by Sylvain Becker
parent ba87b96cea
commit 4053876bf6
6 changed files with 69 additions and 69 deletions

View File

@@ -19,7 +19,7 @@ typedef struct SDLTest_SurfaceImage_s {
int width;
int height;
unsigned int bytes_per_pixel; /* 3:RGB, 4:RGBA */
const char *pixel_data;
char *pixel_data;
} SDLTest_SurfaceImage_t;
/* Test images */