From 7289e5e21564448d3f3f2c47ba06ec08851aa10f Mon Sep 17 00:00:00 2001 From: Sylvain Becker Date: Sun, 27 Oct 2019 15:22:28 +0100 Subject: [PATCH] Android: remove warning in blit_features "integer constant not in range of enumerated type 'enum blit_features'" --- src/video/SDL_blit_N.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/video/SDL_blit_N.c b/src/video/SDL_blit_N.c index b6ffa562d..b4a8e5edf 100644 --- a/src/video/SDL_blit_N.c +++ b/src/video/SDL_blit_N.c @@ -39,6 +39,7 @@ /* Functions to blit from N-bit surfaces to other surfaces */ enum blit_features { + BLIT_FEATURE_NONE = 0, BLIT_FEATURE_HAS_MMX = 1, BLIT_FEATURE_HAS_ALTIVEC = 2, BLIT_FEATURE_ALTIVEC_DONT_USE_PREFETCH = 4,