Fixed handling only one event per frame in test program.
parent
fcee3e734d
commit
1ed86d2211
|
@ -59,7 +59,7 @@ void
|
||||||
loop()
|
loop()
|
||||||
{
|
{
|
||||||
SDL_Event e;
|
SDL_Event e;
|
||||||
if (SDL_PollEvent(&e)) {
|
while (SDL_PollEvent(&e)) {
|
||||||
if (e.type == SDL_QUIT) {
|
if (e.type == SDL_QUIT) {
|
||||||
done = 1;
|
done = 1;
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue