Guest User

Untitled

a guest
Dec 7th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. if(SDL_Init(SDL_INIT_EVERYTHING) != 0)
  2.     {
  3.         printf("Error Initializing SDL!\n");
  4.     }else{printf("SDL Initialized\n");}
  5.     if(IMG_Init(IMG_INIT_PNG) != 0)
  6.     {
  7.         printf("Error Initializing SDL_image!\n");
  8.     }else{printf("SDL_image Initialized\n");}
Add Comment
Please, Sign In to add comment