diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/pugl_cairo_test.c | 2 | ||||
-rw-r--r-- | test/pugl_test.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/pugl_cairo_test.c b/test/pugl_cairo_test.c index 7779069..6d85c54 100644 --- a/test/pugl_cairo_test.c +++ b/test/pugl_cairo_test.c @@ -227,7 +227,7 @@ main(int argc, char** argv) if (continuous) { puglPostRedisplay(view); } else { - puglWaitForEvent(view); + puglPollEvents(world, -1); } puglProcessEvents(view); diff --git a/test/pugl_test.c b/test/pugl_test.c index c4df272..66fd97d 100644 --- a/test/pugl_test.c +++ b/test/pugl_test.c @@ -212,7 +212,7 @@ main(int argc, char** argv) if (app.continuous) { puglPostRedisplay(view); } else { - puglWaitForEvent(view); + puglPollEvents(app.world, -1); } puglProcessEvents(view); |