Procházet zdrojové kódy

testsurround.c: remove unnecessary libc includes and stdint.h types

Ozkan Sezer před 4 roky
rodič
revize
c401627793
1 změnil soubory, kde provedl 1 přidání a 4 odebrání
  1. 1 4
      test/testsurround.c

+ 1 - 4
test/testsurround.c

@@ -13,9 +13,6 @@
 /* Program to test surround sound audio channels */
 /* Program to test surround sound audio channels */
 #include "SDL_config.h"
 #include "SDL_config.h"
 
 
-#include <stdio.h>
-#include <stdlib.h>
-
 #include "SDL.h"
 #include "SDL.h"
 
 
 static int total_channels;
 static int total_channels;
@@ -97,7 +94,7 @@ void SDLCALL
 fill_buffer(void* unused, Uint8* stream, int len)
 fill_buffer(void* unused, Uint8* stream, int len)
 {
 {
     Sint16* buffer = (Sint16*)stream;
     Sint16* buffer = (Sint16*)stream;
-    int samples = len / sizeof(int16_t);
+    int samples = len / sizeof(Sint16);
     static int total_samples = 0;
     static int total_samples = 0;
     int i;
     int i;