Petit refactor.
This commit is contained in:
parent
6231f9ecde
commit
c7ea652cf0
6
erreurs.h
Normal file
6
erreurs.h
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#define die(msg) {\
|
||||||
|
fprintf(stderr, msg "\n"); \
|
||||||
|
fprintf(stderr, " %s\n", SDL_GetError()); \
|
||||||
|
exit(EXIT_FAILURE); \
|
||||||
|
}
|
||||||
|
|
23
main.c
23
main.c
|
@ -1,14 +1,9 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <SDL/SDL.h>
|
#include <SDL/SDL.h>
|
||||||
|
#include "erreurs.h"
|
||||||
|
|
||||||
#define die(msg) {\
|
SDL_Surface* init() {
|
||||||
fprintf(stderr, msg "\n"); \
|
|
||||||
fprintf(stderr, " %s\n", SDL_GetError()); \
|
|
||||||
exit(EXIT_FAILURE); \
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(int argc, char** argv) {
|
|
||||||
if (SDL_Init(SDL_INIT_VIDEO) != 0) {
|
if (SDL_Init(SDL_INIT_VIDEO) != 0) {
|
||||||
die("Erreur lors de l'initialisation de SDL :");
|
die("Erreur lors de l'initialisation de SDL :");
|
||||||
}
|
}
|
||||||
|
@ -20,11 +15,21 @@ int main(int argc, char** argv) {
|
||||||
}
|
}
|
||||||
SDL_WM_SetCaption("Lew", "lew.png");
|
SDL_WM_SetCaption("Lew", "lew.png");
|
||||||
|
|
||||||
|
return fenetre;
|
||||||
|
}
|
||||||
|
|
||||||
|
void quit() {
|
||||||
|
SDL_Quit();
|
||||||
|
exit(EXIT_SUCCESS);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char** argv) {
|
||||||
|
SDL_Surface* fenetre = init();
|
||||||
|
|
||||||
SDL_FillRect(fenetre, NULL, SDL_MapRGB(fenetre->format, 255, 0, 128));
|
SDL_FillRect(fenetre, NULL, SDL_MapRGB(fenetre->format, 255, 0, 128));
|
||||||
SDL_Flip(fenetre);
|
SDL_Flip(fenetre);
|
||||||
|
|
||||||
while (1);
|
while (1);
|
||||||
|
|
||||||
SDL_Quit();
|
quit();
|
||||||
return EXIT_SUCCESS;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user