From ce522108324ae1c5a1c3375dbe74f99855bb07f7 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Sun, 18 Oct 2015 03:26:50 +0200 Subject: [PATCH] Add note about non-magic boolean values --- docs/quick.dox | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/quick.dox b/docs/quick.dox index 7353d2ae..34f543bb 100644 --- a/docs/quick.dox +++ b/docs/quick.dox @@ -68,6 +68,8 @@ if (!glfwInit()) exit(EXIT_FAILURE); @endcode +Note that `GLFW_TRUE` and `GLFW_FALSE` are and will always be just one and zero. + When you are done using GLFW, typically just before the application exits, you need to terminate GLFW.