Skip to content

Commit 9c34035

Browse files
committed
delta_board_type_is_dv: compat with SDK 6.13
the version there is a bit random (> 6.13)
1 parent 61c6243 commit 9c34035

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/deltacast_common.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,8 +1048,9 @@ delta_board_type_is_dv(ULONG BoardIndex)
10481048
BoardType == VHD_BOARDTYPE_HDMI20 ||
10491049
BoardType == VHD_BOARDTYPE_FLEX_DP ||
10501050
BoardType == VHD_BOARDTYPE_FLEX_HMI ||
1051-
BoardType == VHD_BOARDTYPE_MIXEDINTERFACE;
1052-
#else
1053-
false;
10541051
#endif
1052+
#if defined VHD_MIN_6_21
1053+
BoardType == VHD_BOARDTYPE_MIXEDINTERFACE ||
1054+
#endif
1055+
false;
10551056
}

0 commit comments

Comments
 (0)