added null window's getWindowTitle

This commit is contained in:
Bayemite 2021-06-02 21:41:12 +10:00
parent 88afee4222
commit 5a8f94f02f

View File

@ -150,6 +150,11 @@ void _glfwPlatformDestroyWindow(_GLFWwindow* window)
window->context.destroy(window); window->context.destroy(window);
} }
char* _glfwPlatformGetWindowTitle(_GLFWwindow* window)
{
return NULL;
}
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title) void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)
{ {
} }