1
0
Эх сурвалжийг харах

Fixed handling only one event per frame in test program.

Philipp Wiesemann 11 жил өмнө
parent
commit
1ed86d2211

+ 1 - 1
test/testdrawchessboard.c

@@ -59,7 +59,7 @@ void
 loop()
 {
     SDL_Event e;
-	if (SDL_PollEvent(&e)) {
+    while (SDL_PollEvent(&e)) {
 		if (e.type == SDL_QUIT) {
 			done = 1;
 			return;