From 20bacd84707205087f0cc592aadb02383dcbc680 Mon Sep 17 00:00:00 2001 From: GruelingPine185 <66073333+GruelingPine185@users.noreply.github.com> Date: Sat, 12 Aug 2023 15:39:57 -0400 Subject: [PATCH] Added clarification for out-of-code docs --- docs/window.dox | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/window.dox b/docs/window.dox index 3cec6358..97c9fdd9 100644 --- a/docs/window.dox +++ b/docs/window.dox @@ -860,7 +860,8 @@ glfwGetWindowPos(window, &xpos, &ypos); All GLFW windows have a title, although undecorated or full screen windows may not display it or only display it in a task bar or similar interface. You can -set a UTF-8 encoded window title with @ref glfwSetWindowTitle. +set a UTF-8 encoded window title with @ref glfwSetWindowTitle. The set title +should not be `NULL`. @code glfwSetWindowTitle(window, "My Window");