Skip to content

Commit

Permalink
Fixed warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
bkaradzic committed Sep 18, 2022
1 parent dc2f5e1 commit 0ac00d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/directx-headers/include/directx/d3d9.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

#include <windows.h>

#if !defined(HMONITOR_DECLARED) && (WINVER < 0x0500)
#if !defined(HMONITOR_DECLARED) && (!defined(WINVER) || WINVER < 0x0500)
#define HMONITOR_DECLARED
DECLARE_HANDLE(HMONITOR);
#endif
Expand Down

0 comments on commit 0ac00d9

Please sign in to comment.