blob: 921ce6e168f57892318aee3543aefdc657b6da1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include <SDL.h>
#include <SDL_image.h>
#include "init.h"
#include "logging.h"
void
init(void)
{
debug("Initializing SDL...");
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) == -1) {
err(1, "Failed to initialize SDL (%s)", SDL_GetError());
}
debug("Initializing SDL_Image...");
if (IMG_Init(IMG_INIT_PNG) != IMG_INIT_PNG) {
err(1, "Failed to initialize SDL_Image (%s)", IMG_GetError());
}
}
void
quit(int status)
{
debug("Quitting SDL_Image...");
IMG_Quit();
debug("Quitting SDL...");
SDL_Quit();
exit(status);
}
|