From 1cbfe6be703916c362fa3b4b9783d2ef0ac6f3db Mon Sep 17 00:00:00 2001 From: REghZy <32274404+AngryCarrot789@users.noreply.github.com> Date: Fri, 8 Dec 2023 22:24:04 +0000 Subject: [PATCH] Fixed test not compiling when USE_WIN32_THREAD_EMPTY_EVENT_TEST is not defined --- tests/window.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/window.c b/tests/window.c index 7525b55f..378e3506 100644 --- a/tests/window.c +++ b/tests/window.c @@ -105,7 +105,9 @@ int main(int argc, char** argv) if (!glfwInit()) exit(EXIT_FAILURE); +#ifdef USE_WIN32_THREAD_EMPTY_EVENT_TEST glfwSetEmptyEventCallback(onEmptyEventPosted); +#endif // USE_WIN32_THREAD_EMPTY_EVENT_TEST glfwWindowHint(GLFW_SCALE_TO_MONITOR, GLFW_TRUE); glfwWindowHint(GLFW_WIN32_KEYBOARD_MENU, GLFW_TRUE);