Browse Source

testspriteminimal: don't allow any arguments

Anonymous Maarten 2 năm trước cách đây
mục cha
commit
0268881e30
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      test/testspriteminimal.c

+ 5 - 0
test/testspriteminimal.c

@@ -103,6 +103,11 @@ int main(int argc, char *argv[])
     /* Enable standard application logging */
     SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
 
+    if (argc > 1) {
+        SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "USAGE: %s\n", argv[0]);
+        quit(1);
+    }
+
     if (SDL_CreateWindowAndRenderer(WINDOW_WIDTH, WINDOW_HEIGHT, 0, &window, &renderer) < 0) {
         quit(2);
     }