소스 검색

Android: remove warning in blit_features
"integer constant not in range of enumerated type 'enum blit_features'"

Sylvain Becker 5 년 전
부모
커밋
7289e5e215
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/video/SDL_blit_N.c

+ 1 - 0
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,