From 4cdc741b4a772600fd47b4367d067f16437984c5 Mon Sep 17 00:00:00 2001 From: Reece Mackie <20544390+Rover656@users.noreply.github.com> Date: Sat, 27 Apr 2019 16:50:02 +0100 Subject: [PATCH] Re-fix --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index 82110b1e9..72f700a55 100644 --- a/src/core.c +++ b/src/core.c @@ -885,7 +885,7 @@ int GetScreenHeight(void) // Get native window handle void *GetWindowHandle(void) { -#ifdef PLATFORM_DESKTOP +#if defined(PLATFORM_DESKTOP) && defined(_WIN32) // NOTE: Returned handle is: void *HWND (windows.h) return glfwGetWin32Window(window); #elif defined(__linux__)