From d9b93315ba7280cf0b1ad3cd09b535cc12a1923c Mon Sep 17 00:00:00 2001 From: Scr3amer Date: Tue, 26 Sep 2023 14:56:35 -0400 Subject: [PATCH] Buildfix : Fix typo in function name --- src/null_platform.h | 2 +- src/null_window.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/null_platform.h b/src/null_platform.h index 8ed01cd2..46ca6742 100644 --- a/src/null_platform.h +++ b/src/null_platform.h @@ -240,7 +240,7 @@ GLFWbool _glfwRawMouseMotionSupportedNull(void); void _glfwShowWindowNull(_GLFWwindow* window); void _glfwRequestWindowAttentionNull(_GLFWwindow* window); void _glfwRequestWindowAttentionNull(_GLFWwindow* window); -_GLFWmonitor* _glfwGetMonitorDisplayingWindoNull(_GLFWwindow* window); +_GLFWmonitor* _glfwGetMonitorDisplayingWindowNull(_GLFWwindow* window); void _glfwHideWindowNull(_GLFWwindow* window); void _glfwFocusWindowNull(_GLFWwindow* window); GLFWbool _glfwWindowFocusedNull(_GLFWwindow* window); diff --git a/src/null_window.c b/src/null_window.c index 90245579..dcf11ae4 100644 --- a/src/null_window.c +++ b/src/null_window.c @@ -436,7 +436,7 @@ void _glfwRequestWindowAttentionNull(_GLFWwindow* window) { } -_GLFWmonitor* _glfwGetMonitorDisplayingWindoNull(_GLFWwindow* window) +_GLFWmonitor* _glfwGetMonitorDisplayingWindowNull(_GLFWwindow* window) { return NULL; }