فهرست منبع

assert: Possibly fixing compiler warning on Android.

Ryan C. Gordon 5 سال پیش
والد
کامیت
59e510b0b6
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/SDL_assert.c

+ 1 - 1
src/SDL_assert.c

@@ -378,7 +378,7 @@ SDL_ReportAssertion(SDL_assert_data *data, const char *func, const char *file,
     {
         case SDL_ASSERTION_ABORT:
             SDL_AbortAssertion();
-            return SDL_ASSERTION_IGNORE;  /* shouldn't return, but oh well. */
+            break;  /* shouldn't return, but oh well. */
 
         case SDL_ASSERTION_ALWAYS_IGNORE:
             state = SDL_ASSERTION_IGNORE;