Skip to content

Commit 5a32d7c

Browse files
committed
deltacast_common.hpp: fix inverted condition
today's change; just a warning fix
1 parent 454eb7b commit 5a32d7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/deltacast_common.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
// enum membber until 6.20, macro since 6.21
8888
#define VHD_MIN_6_21 1
8989
#endif
90-
#if !defined VHD_MIN_6_21 || !defined VHD_IS_6_20 // 6.19 or 6.20
90+
#if !defined VHD_MIN_6_21 && !defined VHD_IS_6_20 // 6.19 or 6.20
9191
#warning cannot determine if VideoMaster is 6.19 or 6.20 - \
9292
assuming 6.20. Pass -DVHD_IS_6_19 (or 6_20) to enforce \
9393
specific version.

0 commit comments

Comments
 (0)