From 77d2a2131d32f16c47bef51b76793d0ddcc2b5ed Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Wed, 20 Aug 2014 17:59:58 +0200 Subject: [PATCH] Fixed fallthrough bug in glfwinfo. --- tests/glfwinfo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/glfwinfo.c b/tests/glfwinfo.c index 07c1142e..12a5048b 100644 --- a/tests/glfwinfo.c +++ b/tests/glfwinfo.c @@ -207,6 +207,7 @@ int main(int argc, char** argv) usage(); exit(EXIT_FAILURE); } + break; case 'd': debug = GL_TRUE; break;