From 7cb06956c23a439c262eed89d5611333240266f8 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Tue, 28 Dec 2021 00:16:06 +0300 Subject: [PATCH] engine: platform: win32: fix compile --- engine/platform/win32/con_win.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/engine/platform/win32/con_win.c b/engine/platform/win32/con_win.c index 74d5a0a5..68a5d896 100644 --- a/engine/platform/win32/con_win.c +++ b/engine/platform/win32/con_win.c @@ -13,8 +13,8 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ -#ifdef _WIN32 #include "common.h" +#include "xash3d_mathlib.h" /* =============================================================================== @@ -468,4 +468,3 @@ void Wcon_RegisterHotkeys( void ) // user can hit escape for quit RegisterHotKey( s_wcd.hWnd, QUIT_ON_ESCAPE_ID, 0, VK_ESCAPE ); } -#endif // _WIN32