diff options
Diffstat (limited to 'test/pugl_gl3_test.c')
-rw-r--r-- | test/pugl_gl3_test.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/pugl_gl3_test.c b/test/pugl_gl3_test.c index 8228336..21db4b2 100644 --- a/test/pugl_gl3_test.c +++ b/test/pugl_gl3_test.c @@ -313,8 +313,10 @@ main(int argc, char** argv) puglSetHandle(app.view, &app); puglSetEventFunc(app.view, onEvent); - if (puglCreateWindow(app.view, "Pugl OpenGL 3")) { - fprintf(stderr, "error: Failed to create window\n"); + const PuglStatus st = puglCreateWindow(app.view, "Pugl OpenGL 3"); + if (st) { + fprintf(stderr, "error: Failed to create window (%s)\n", + puglStrerror(st)); return 1; } |