Skip to content

Commit

Permalink
Fix incorrect sampling mode selection in analog mode
Browse files Browse the repository at this point in the history
  • Loading branch information
IanSB committed Jun 9, 2022
1 parent e634652 commit ae46e8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpld_rgb.c
Expand Up @@ -1715,7 +1715,7 @@ static void cpld_set_value(int num, int value) {
value = RGB_RATE_4_LEVEL;
}
} else {
if (value == RGB_RATE_12) {
if (value == RGB_RATE_9LO_BLANKED) {
value = RGB_RATE_6;
}
}
Expand Down

0 comments on commit ae46e8f

Please sign in to comment.