mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-09 01:15:26 +00:00
SDL_blit_N.c: removed duplicated const (fixes bug #5401)
This commit is contained in:
parent
3ab739afff
commit
ee6bfcdd66
|
@ -128,7 +128,7 @@ calc_swizzle32(const SDL_PixelFormat * srcfmt, const SDL_PixelFormat * dstfmt)
|
|||
* leave alpha with a zero mask, but we should still swizzle the bits.
|
||||
*/
|
||||
/* ARGB */
|
||||
const static const struct SDL_PixelFormat default_pixel_format = {
|
||||
static const struct SDL_PixelFormat default_pixel_format = {
|
||||
0, NULL, 0, 0,
|
||||
{0, 0},
|
||||
0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000,
|
||||
|
|
Loading…
Reference in a new issue