Bug #892
[Win] sys_input.c includes MSVC header
Start date:
2010-04-11
% Done:
100%
Description
engine/win32/sys_input.c (Windows DirectInput) includes the header "strsafe.h" which is MSVC-specific. To compile deng with MinGW, it needs to be wrapped with:
#ifdef _MSC_VER
#include <strsafe.h>
#endif
Labels: Controllers
History
#1 Updated by danij over 11 years ago
Removed the include entirely as this file no longer makes use of it.
Fixed for 1.9.0-Beta6.10