summaryrefslogtreecommitdiff
path: root/src/sandbox/sprite.c
diff options
context:
space:
mode:
authorLudovic Pouzenc <lpouzenc@gmail.com>2013-07-11 14:21:20 +0200
committerLudovic Pouzenc <lpouzenc@gmail.com>2013-07-11 14:21:20 +0200
commit98c0c062d69022557a0b3804db4319555ae127c9 (patch)
tree4180b9b700ba9b1f257611397aba32fef44a2251 /src/sandbox/sprite.c
parentbef3340ba0ea373f324b0eb300747236d1a8d4fa (diff)
downloadmplemmings-98c0c062d69022557a0b3804db4319555ae127c9.tar.gz
mplemmings-98c0c062d69022557a0b3804db4319555ae127c9.tar.bz2
mplemmings-98c0c062d69022557a0b3804db4319555ae127c9.zip
Debut travail parser. Reprise d'elements de 2010 mais bison/flex == pas très portable.
Diffstat (limited to 'src/sandbox/sprite.c')
-rw-r--r--src/sandbox/sprite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sandbox/sprite.c b/src/sandbox/sprite.c
index 0a35cb8..d624e3e 100644
--- a/src/sandbox/sprite.c
+++ b/src/sandbox/sprite.c
@@ -31,7 +31,7 @@ int main(int argc, char *argv[]) {
int mainloop_end=0;
SDL_Rect win_pos = { .x=SDL_WINDOWPOS_UNDEFINED, .y=SDL_WINDOWPOS_UNDEFINED, .w=MPL_WINDOW_WIDTH, .h=MPL_WINDOW_HEIGHT };
- Uint32 init_flags = SDL_INIT_TIMER|SDL_INIT_AUDIO|SDL_INIT_VIDEO|SDL_INIT_EVENTS;
+ Uint32 init_flags = SDL_INIT_TIMER|SDL_INIT_AUDIO|SDL_INIT_VIDEO;//|SDL_INIT_EVENTS;
Uint32 win_flags = SDL_WINDOW_SHOWN; //|SDL_WINDOW_OPENGL;
//Uint32 rend_flags = SDL_RENDERER_ACCELERATED|SDL_RENDERER_PRESENTVSYNC;
Uint32 rend_flags = SDL_RENDERER_ACCELERATED;