Skip to content

Commit

Permalink
Check _WINDOWS in addition to _WIN32, just in case.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jan 8, 2010
1 parent c57b386 commit d156d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion windows_wminput.c
Expand Up @@ -8,7 +8,7 @@

#include "manymouse.h"

#if (defined(_WIN32) || defined(__CYGWIN__))
#if (defined(_WIN32) || defined(_WINDOWS) || defined(__CYGWIN__))

/* WinUser.h won't include rawinput stuff without this... */
#if (_WIN32_WINNT < 0x0501)
Expand Down

0 comments on commit d156d94

Please sign in to comment.